# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
491399 |
2021-12-01T23:58:35 Z |
nehasane |
Mecho (IOI09_mecho) |
C++14 |
|
436 ms |
7720 KB |
//for an editorial and code in C++, visit my blog - https://nehasane.blogspot.com/2021/11/ioi-2009-mecho.html
#include <bits/stdc++.h>
using namespace std;
const int MAX_N = 800;
vector <string> field(MAX_N);
bool bees_visited[MAX_N][MAX_N], mecho_visited[MAX_N][MAX_N];
//mecho_time records the time taken for mecho to reach node[x][y].
//bees_time does the same for the bees
int mecho_time[MAX_N][MAX_N], bees_time[MAX_N][MAX_N];
queue <pair <int, int>> q;
int dx[] = {-1, 1, 0, 0};
int dy[] = {0, 0, -1, 1};
int n, s;
bool valid_sq(int x, int y){
if (x >= 0 && x < n && y >= 0 && y < n && (field[x][y] == 'G' || field[x][y] == 'M'))
return true;
return false;
}
int main()
{
cin >> n >> s;
for (int i = 0; i < n; i++)
cin >> field[i];
vector <pair <int, int>> hives;
int mechox, mechoy, home_x, home_y;
//find x and y coordinates for for Mecho, the bees and the cave
for (int i = 0; i < n; i++){
for (int j = 0; j < n; j++){
if (field[i][j] == 'M'){
mechox = i;
mechoy = j;
}else if (field[i][j] == 'H'){
hives.push_back({i, j});
}else if (field[i][j] == 'D'){
home_x = i;
home_y = j;
}
}
}
//binary search on waiting time
int l = 0, r = 2*n;
while (l <= r){
int eating_time = (l + r) / 2;
memset(bees_visited, false, sizeof(bees_visited));
memset(mecho_visited, false, sizeof(mecho_visited));
memset(bees_time, 0, sizeof(bees_time));
memset(mecho_time, 0, sizeof(mecho_time));
//move bees
for (auto i : hives){
q.push({i.first, i.second});
bees_visited[i.first][i.second] = true;
}
while (!q.empty()){
int x = q.front().first, y = q.front().second;
q.pop();
for (int i = 0; i < 4; i++){
int nx = x + dx[i], ny = y + dy[i];
if (valid_sq(nx, ny) && !bees_visited[nx][ny]){
bees_time[nx][ny] = bees_time[x][y] + 1;
q.push({nx, ny});
bees_visited[nx][ny] = true;
}
}
}
//move Mecho
q.push({mechox, mechoy});
mecho_visited[mechox][mechoy] = true;
if (bees_time[mechox][mechoy] <= eating_time)
q.pop();
while (!q.empty()){
int x = q.front().first, y = q.front().second;
q.pop();
for (int i = 0; i < 4; i++){
int nx = x + dx[i], ny = y + dy[i];
//check if mecho reaces node[x][y] before the bees
/*divide the time mecho takes to reach a node by s, since mecho
walks s steps at a time.
substract the eating time from the time taken for the bees to
reach the node, because that time was used by mecho for eating
*/
if (valid_sq(nx, ny) && !mecho_visited[nx][ny] &&
(mecho_time[x][y] + 1) / s < bees_time[nx][ny] - eating_time){
mecho_visited[nx][ny] = true;
q.push({nx, ny});
mecho_time[nx][ny] = mecho_time[x][y] + 1;
}
}
}
//check if mecho reached a node surrounding his cave before the bees
bool mecho_reached = false;
for (int i = 0; i < 4; i++){
int nx = home_x+ dx[i], ny = home_y + dy[i];
if (valid_sq(nx, ny) && (mecho_time[nx][ny] / s) < bees_time[nx][ny] - eating_time
&& mecho_visited[nx][ny])
mecho_reached = true;
}
if (mecho_reached)
l = eating_time + 1;
else
r = eating_time - 1;
}
cout << l - 1 << '\n';
}
Compilation message
mecho.cpp: In function 'int main()':
mecho.cpp:68:37: warning: 'mechoy' may be used uninitialized in this function [-Wmaybe-uninitialized]
68 | if (bees_time[mechox][mechoy] <= eating_time)
| ~~~~~~~~~~~~~~~~~~~~~~~~^
mecho.cpp:68:37: warning: 'mechox' may be used uninitialized in this function [-Wmaybe-uninitialized]
mecho.cpp:92:37: warning: 'home_y' may be used uninitialized in this function [-Wmaybe-uninitialized]
92 | int nx = home_x+ dx[i], ny = home_y + dy[i];
| ^~
mecho.cpp:92:17: warning: 'home_x' may be used uninitialized in this function [-Wmaybe-uninitialized]
92 | int nx = home_x+ dx[i], ny = home_y + dy[i];
| ^~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
6476 KB |
Output is correct |
2 |
Correct |
4 ms |
6476 KB |
Output is correct |
3 |
Correct |
3 ms |
6476 KB |
Output is correct |
4 |
Correct |
4 ms |
6476 KB |
Output is correct |
5 |
Correct |
4 ms |
6476 KB |
Output is correct |
6 |
Correct |
4 ms |
6476 KB |
Output is correct |
7 |
Correct |
342 ms |
7444 KB |
Output is correct |
8 |
Correct |
4 ms |
6476 KB |
Output is correct |
9 |
Correct |
5 ms |
6476 KB |
Output is correct |
10 |
Correct |
4 ms |
6476 KB |
Output is correct |
11 |
Correct |
4 ms |
6476 KB |
Output is correct |
12 |
Incorrect |
5 ms |
6476 KB |
Output isn't correct |
13 |
Correct |
6 ms |
6476 KB |
Output is correct |
14 |
Correct |
7 ms |
6592 KB |
Output is correct |
15 |
Incorrect |
5 ms |
6476 KB |
Output isn't correct |
16 |
Incorrect |
5 ms |
6476 KB |
Output isn't correct |
17 |
Incorrect |
6 ms |
6564 KB |
Output isn't correct |
18 |
Incorrect |
6 ms |
6496 KB |
Output isn't correct |
19 |
Incorrect |
5 ms |
6532 KB |
Output isn't correct |
20 |
Incorrect |
5 ms |
6548 KB |
Output isn't correct |
21 |
Incorrect |
7 ms |
6580 KB |
Output isn't correct |
22 |
Incorrect |
5 ms |
6476 KB |
Output isn't correct |
23 |
Incorrect |
5 ms |
6476 KB |
Output isn't correct |
24 |
Incorrect |
5 ms |
6476 KB |
Output isn't correct |
25 |
Incorrect |
5 ms |
6476 KB |
Output isn't correct |
26 |
Incorrect |
5 ms |
6516 KB |
Output isn't correct |
27 |
Incorrect |
9 ms |
6592 KB |
Output isn't correct |
28 |
Incorrect |
8 ms |
6588 KB |
Output isn't correct |
29 |
Incorrect |
6 ms |
6476 KB |
Output isn't correct |
30 |
Incorrect |
7 ms |
6588 KB |
Output isn't correct |
31 |
Incorrect |
6 ms |
6592 KB |
Output isn't correct |
32 |
Incorrect |
10 ms |
6476 KB |
Output isn't correct |
33 |
Incorrect |
35 ms |
6748 KB |
Output isn't correct |
34 |
Incorrect |
40 ms |
6732 KB |
Output isn't correct |
35 |
Correct |
49 ms |
6736 KB |
Output is correct |
36 |
Incorrect |
45 ms |
6732 KB |
Output isn't correct |
37 |
Incorrect |
50 ms |
6732 KB |
Output isn't correct |
38 |
Correct |
69 ms |
6756 KB |
Output is correct |
39 |
Incorrect |
52 ms |
6732 KB |
Output isn't correct |
40 |
Incorrect |
63 ms |
6732 KB |
Output isn't correct |
41 |
Correct |
91 ms |
6732 KB |
Output is correct |
42 |
Incorrect |
68 ms |
7052 KB |
Output isn't correct |
43 |
Incorrect |
78 ms |
7016 KB |
Output isn't correct |
44 |
Correct |
109 ms |
6988 KB |
Output is correct |
45 |
Incorrect |
84 ms |
7088 KB |
Output isn't correct |
46 |
Incorrect |
105 ms |
7116 KB |
Output isn't correct |
47 |
Correct |
127 ms |
7092 KB |
Output is correct |
48 |
Incorrect |
96 ms |
7116 KB |
Output isn't correct |
49 |
Incorrect |
119 ms |
7140 KB |
Output isn't correct |
50 |
Correct |
166 ms |
7136 KB |
Output is correct |
51 |
Incorrect |
108 ms |
7236 KB |
Output isn't correct |
52 |
Incorrect |
134 ms |
7184 KB |
Output isn't correct |
53 |
Correct |
184 ms |
7196 KB |
Output is correct |
54 |
Incorrect |
128 ms |
7244 KB |
Output isn't correct |
55 |
Incorrect |
156 ms |
7136 KB |
Output isn't correct |
56 |
Correct |
215 ms |
7240 KB |
Output is correct |
57 |
Incorrect |
151 ms |
7244 KB |
Output isn't correct |
58 |
Incorrect |
193 ms |
7308 KB |
Output isn't correct |
59 |
Correct |
263 ms |
7288 KB |
Output is correct |
60 |
Incorrect |
167 ms |
7244 KB |
Output isn't correct |
61 |
Incorrect |
202 ms |
7320 KB |
Output isn't correct |
62 |
Correct |
374 ms |
7332 KB |
Output is correct |
63 |
Correct |
353 ms |
7364 KB |
Output is correct |
64 |
Correct |
427 ms |
7312 KB |
Output is correct |
65 |
Correct |
436 ms |
7324 KB |
Output is correct |
66 |
Correct |
353 ms |
7340 KB |
Output is correct |
67 |
Correct |
340 ms |
7244 KB |
Output is correct |
68 |
Correct |
314 ms |
7372 KB |
Output is correct |
69 |
Correct |
294 ms |
7364 KB |
Output is correct |
70 |
Correct |
299 ms |
7372 KB |
Output is correct |
71 |
Correct |
293 ms |
7332 KB |
Output is correct |
72 |
Correct |
301 ms |
7240 KB |
Output is correct |
73 |
Correct |
296 ms |
7636 KB |
Output is correct |
74 |
Correct |
308 ms |
7636 KB |
Output is correct |
75 |
Correct |
300 ms |
7648 KB |
Output is correct |
76 |
Correct |
302 ms |
7640 KB |
Output is correct |
77 |
Correct |
279 ms |
7652 KB |
Output is correct |
78 |
Correct |
315 ms |
7596 KB |
Output is correct |
79 |
Correct |
300 ms |
7600 KB |
Output is correct |
80 |
Correct |
295 ms |
7720 KB |
Output is correct |
81 |
Correct |
327 ms |
7596 KB |
Output is correct |
82 |
Correct |
313 ms |
7604 KB |
Output is correct |
83 |
Correct |
413 ms |
7500 KB |
Output is correct |
84 |
Correct |
337 ms |
7556 KB |
Output is correct |
85 |
Correct |
349 ms |
7560 KB |
Output is correct |
86 |
Correct |
334 ms |
7620 KB |
Output is correct |
87 |
Correct |
345 ms |
7560 KB |
Output is correct |
88 |
Correct |
339 ms |
7500 KB |
Output is correct |
89 |
Correct |
342 ms |
7472 KB |
Output is correct |
90 |
Correct |
342 ms |
7504 KB |
Output is correct |
91 |
Correct |
337 ms |
7620 KB |
Output is correct |
92 |
Correct |
308 ms |
7500 KB |
Output is correct |