1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <cstdio>
#include <queue>
#include <unordered_set>
using namespace std;

#define MAX_C	100010

int A, B, C;
int s[MAX_C], sc;
queue<pair<int, long long>> w;
unordered_set<long long> o;

void m(int l, int av, int bv, int cv) {
	long long t = 1LL * (A + 1) * (1LL * (B + 1) * cv + bv) + av;

	if (o.find(t) == o.end()) {
		o.insert(t);
		if (s[av] == -1) {
			s[av] = l;
			sc++;
		}
		if (s[bv] == -1) {
			s[bv] = l;
			sc++;
		}
		if (s[cv] == -1) {
			s[cv] = l;
			sc++;
		}
		w.push(make_pair(l, t));
	}
}

int main() {
	int av, bv, cv, l;

	scanf("%d %d %d", &A, &B, &C);
	scanf("%d %d %d", &av, &bv, &cv);

	for (int i = 0; i < C + 1; i++) {
		s[i] = -1;
	}

	m(0, av, bv, cv);
	while (sc < C + 1 && !w.empty()) {
		auto e = w.front();
		w.pop();

		l = e.first;
		av = e.second % (A + 1);
		bv = (e.second - 1LL * av) / (A + 1) % (B + 1);
		cv = (e.second - 1LL * av - 1LL * bv * (A + 1)) / (A + 1) / (B + 1);

		m(l + 1, max(0, av + bv - B), min(av + bv, B), cv);
		m(l + 1, max(0, av + cv - C), bv, min(av + cv, C));
		m(l + 1, min(av + bv, A), max(0, av + bv - A), cv);
		m(l + 1, av, max(0, bv + cv - C), min(bv + cv, C));
		m(l + 1, min(av + cv, A), bv, max(0, av + cv - A));
		m(l + 1, av, min(bv + cv, B), max(0, bv + cv - B));
	}

	printf("%d", s[0]);
	for (int i = 1; i < C + 1; ++i) {
		printf(" %d", s[i]);
	}
	printf("\n");
	return 0;
}