-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path2002.cpp
77 lines (77 loc) · 2.39 KB
/
2002.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/2002
#include <algorithm>
#include <cstdio>
#include <queue>
#define MAXN 111
#define MP make_pair
using namespace std;
typedef long long ll;
#define gc getchar_unlocked
void getint(ll &x) {
register int c = gc();
x = 0;
for (; (c < 48 || c > 57); c = gc())
;
for (; c > 47 && c < 58; c = gc()) {
x = (x << 1) + (x << 3) + c - 48;
}
}
typedef pair<ll, ll> ii;
typedef pair<ll, ii> iii;
ll matriz[MAXN][MAXN], processado[MAXN][MAXN], n, m;
inline ll aux_func(ll x) {
if (x % 4LL == 0LL) return x;
if (x % 4LL == 1LL) return 1LL;
if (x % 4LL == 2LL) return x + 1LL;
return 0LL;
}
inline ll func(ll x, ll y) {
if (x > y) swap(x, y);
return aux_func(y) ^ aux_func(x - 1);
}
int main() {
while (scanf("%lld %lld", &n, &m) != EOF) {
for (ll i = 1LL; i <= n; i++) {
for (ll j = 1LL; j <= m; j++) {
getint(matriz[i][j]);
processado[i][j] = 0;
}
}
priority_queue<iii, vector<iii>, greater<iii> > Dijkstra;
Dijkstra.push(MP(0, MP(1, 1)));
while (!Dijkstra.empty()) {
iii davez = Dijkstra.top();
Dijkstra.pop();
ll percorrido = davez.first, x = davez.second.first,
y = davez.second.second;
if (processado[x][y]) continue;
processado[x][y] = 1;
if (x == n && y == m) {
printf("%lld\n", percorrido);
break;
}
if (x - 1 >= 1 && !processado[x - 1][y]) {
Dijkstra.push(
MP(percorrido + func(matriz[x - 1][y], matriz[x][y]),
MP(x - 1, y)));
}
if (x + 1 <= n && !processado[x + 1][y]) {
Dijkstra.push(
MP(percorrido + func(matriz[x + 1][y], matriz[x][y]),
MP(x + 1, y)));
}
if (y - 1 >= 1 && !processado[x][y - 1]) {
Dijkstra.push(
MP(percorrido + func(matriz[x][y - 1], matriz[x][y]),
MP(x, y - 1)));
}
if (y + 1 <= m && !processado[x][y + 1]) {
Dijkstra.push(
MP(percorrido + func(matriz[x][y + 1], matriz[x][y]),
MP(x, y + 1)));
}
}
}
return 0;
}