-
Notifications
You must be signed in to change notification settings - Fork 0
/
UvA 571 BFS solution.cpp
149 lines (85 loc) · 2.7 KB
/
UvA 571 BFS solution.cpp
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#include <bits/stdc++.h>
#define pb push_back
#define lp(i,n) for(int i=0;i<n;i++)
using namespace std;
pair<int,int> visited[1009][1009];
pair<int,int> bfs(int Ca,int Cb, int N){
queue <pair<int,int> > q;
q.push({0,0});
while(!q.empty()){
auto fr=q.front();
q.pop();
if(fr.first==N || fr.second==N) {
return fr;
}
if(visited[0][fr.second]==make_pair(-1,-1)){
visited[0][fr.second]={fr.first,fr.second};
q.push({0,fr.second});
}
if(visited[fr.first][0]==make_pair(-1,-1)){
visited[fr.first][0]={fr.first,fr.second};
q.push({fr.first,0});
}
if(visited[Ca][fr.second]==make_pair(-1,-1)){
visited[Ca][fr.second]={fr.first,fr.second};
q.push({Ca,fr.second});
}
if(visited[fr.first][Cb]==make_pair(-1,-1)){
visited[fr.first][Cb]={fr.first,fr.second};
q.push({fr.first,Cb});
}
int poura=min(fr.second,Ca-fr.first);
int pourb=min(fr.first,Cb-fr.second);
if (visited [fr.first+poura][fr.second-poura]==make_pair(-1,-1)){
visited[fr.first+poura][fr.second-poura]={fr.first,fr.second};
q.push({fr.first+poura, fr.second-poura});
}
if(visited[fr.first-pourb][fr.second+pourb]==make_pair(-1,-1)){
visited[fr.first-pourb][fr.second+pourb]={fr.first,fr.second};
q.push({fr.first-pourb,fr.second+pourb});
}
}/* END OF WHILE */
//return fr;
}/*END OF BFS*/
void print_states(int i,int j){
stack<string> str;
while(i!=0 || j!=0){
int par1,par2;
par1=visited[i][j].first;
par2=visited[i][j].second;
if((par2==j) && i>par1){
str.push("fill A");
}else if((par2==j) && par1>i){
str.push("empty A");
} else if((par1==i) && j>par2){
str.push("fill B");
}else if((par1==i) && j<par2){
str.push("empty B");
}else if(par1>i && par2<j){
str.push("pour A B");
}else if(par1<i && par2>j){
str.push("pour B A");
}
i=par1;
j=par2;
}
while((!str.empty())){
cout<<str.top()<<endl;
str.pop();
}
cout<<"success"<<endl;
}
int main ()
{
int Ca,Cb,N;
while(cin>>Ca>>Cb>>N){
for(int i=0 ;i<1001; i++){
for(int j=0 ;j<1001; j++){
visited[i][j]={-1,-1};
}
}
pair<int,int> final_state=bfs(Ca,Cb,N);
print_states(final_state.first,final_state.second);
}
return 0;
}