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
#include<iostream>
#include<cstdlib>
#include<cstdio>
#include<map>
#include<queue>
using namespace std;
map<pair<int,int>,int> m;
int A,B,C,a,b,c,x,y,z,q,p,k,tab[100005];
queue<pair<int,int>> Q;
int main(){
  scanf("%d%d%d%d%d%d",&A,&B,&C,&a,&b,&c);
  m[{a,b}]=1;
  Q.push({a,b});
  while(!Q.empty()){
    x=Q.front().first;
    y=Q.front().second;
    Q.pop();
    z=a+b+c-x-y;
    k=m[{x,y}]+1;
    //cout<<x<<" "<<y<<" "<<z<<"!\n";
    q=max(0,x+y-B),p=x+y-max(0,x+y-B);
    if(m[{q,p}]==0){
      m[{q,p}]=k;
      Q.push({q,p});
    }
    q=x+y-max(0,x+y-A),p=max(0,x+y-A);
    if(m[{q,p}]==0){
      m[{q,p}]=k;
      Q.push({q,p});
    }
    q=max(0,x+z-C),p=y;
    if(m[{q,p}]==0){
      m[{q,p}]=k;
      Q.push({q,p});
    }
    q=x+z-max(0,x+z-A),p=y;
    //cout<<q<<" "<<p<<"!!!!";
    if(m[{q,p}]==0){
      m[{q,p}]=k;
      Q.push({q,p});
    }
    q=x,p=max(0,y+z-C);
    if(m[{q,p}]==0){
      m[{q,p}]=k;
      Q.push({q,p});
    }
    q=x,p=y+z-max(0,y+z-B);
    if(m[{q,p}]==0){
      m[{q,p}]=k;
      Q.push({q,p});
    }
  }
  for(int i=0;i<=100000;i++)
    tab[i]=1000000000;
  for(map<pair<int,int>,int>::iterator it=m.begin();it!=m.end();it++){
    x=it->first.first;
    y=it->first.second;
    z=a+b+c-x-y;
    k=it->second-1;
    tab[x]=min(tab[x],k);
    tab[y]=min(tab[y],k);
    tab[z]=min(tab[z],k);
  }
  for(int i=0;i<=C;i++)
    if(tab[i]==1000000000) printf("-1 "); else printf("%d ",tab[i]);
  return 0;
}