-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcco05p1.cpp
61 lines (61 loc) · 1.62 KB
/
cco05p1.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
// Ivan Carvalho
// Solution to https://dmoj.ca/problem/cco05p1
#include <cstdio>
#include <queue>
#define MAXN 101
#define MP make_pair
using namespace std;
typedef pair<int, int> ii;
int dx[4] = {1, -1, 0, 0};
int dy[4] = {0, 0, 1, -1};
int matriz[MAXN][MAXN], processado[MAXN][MAXN], iteracao, n, m;
inline int valido(int x, int y, int v1, int v2, int v3) {
return x >= 1 && y >= 1 && x <= n && y <= m &&
processado[x][y] != iteracao &&
(matriz[x][y] == v1 || matriz[x][y] == v2 || matriz[x][y] == v3);
}
int func(int v1, int v2, int v3) {
iteracao++;
queue<ii> bfs;
for (int i = 1; i <= m; i++) {
bfs.push(MP(1, i));
}
while (!bfs.empty()) {
int x = bfs.front().first;
int y = bfs.front().second;
bfs.pop();
if (processado[x][y] == iteracao) continue;
processado[x][y] = iteracao;
if (x == n) {
return 1;
}
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (valido(nx, ny, v1, v2, v3)) {
bfs.push(MP(nx, ny));
}
}
}
return 0;
}
int main() {
scanf("%d %d", &m, &n);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
scanf("%d", &matriz[i][j]);
}
}
for (int i = 0; i <= 9; i++) {
for (int j = 0; j <= 9; j++) {
for (int k = 0; k <= 9; k++) {
if (func(i, j, k)) {
printf("%d %d %d\n", i, j, k);
return 0;
}
}
}
}
printf("-1 -1 -1\n");
return 0;
}