# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
97696 |
2019-02-17T18:09:25 Z |
tincamatei |
Game (IOI13_game) |
C++14 |
|
3183 ms |
138172 KB |
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
long long gcd2(long long X, long long Y) {
long long tmp;
while (X != Y && Y != 0) {
tmp = X;
X = Y;
Y = tmp % Y;
}
return X;
}
int R, C;
long long **aint;
int best;
void initxd(int l, int r, int nod = 1) {
if(nod > best)
best = nod;
if(l < r) {
int mid = (l + r) / 2;
initxd(l, mid, 2 * nod);
initxd(mid + 1, r, 2 * nod + 1);
}
}
void updateSmall(int anod, int poz, long long val, int l, int r, int nod = 1) {
if(poz < l || r < poz) return;
if(l == r)
aint[anod][nod] = val;
else if(l < r) {
int mid = (l + r) / 2;
updateSmall(anod, poz, val, l, mid, 2 * nod);
updateSmall(anod, poz, val, mid + 1, r, 2 * nod + 1);
aint[anod][nod] = gcd2(aint[anod][2 * nod], aint[anod][2 * nod + 1]);
}
}
long long querySmall(int anod, int i, int j, int l, int r, int nod = 1) {
if(r < i || j < l) return 0;
if(i <= l && r <= j)
return aint[anod][nod];
else if(l < r) {
int mid = (l + r) / 2;
return gcd2(querySmall(anod, i, j, l, mid, 2 * nod),
querySmall(anod, i, j, mid + 1, r, 2 * nod + 1));
}
return 0;
}
void updateBig(int i, int j, long long val, int l, int r, int nod = 1) {
if(i < l || r < i) return;
if(l == r)
updateSmall(nod, j, val, 0, C - 1);
if(l < r) {
int mid = (l + r) / 2;
updateBig(i, j, val, l, mid, 2 * nod);
updateBig(i, j, val, mid + 1, r, 2 * nod + 1);
long long x = gcd2(querySmall(2 * nod, j, j, 0, C - 1),
querySmall(2 * nod + 1, j, j, 0, C - 1));
updateSmall(nod, j, x, 0, C - 1);
}
}
long long queryBig(int p, int q, int u, int v, int l, int r, int nod = 1) {
if(r < p || q < l || p > q) return 0;
if(p <= l && r <= q)
return querySmall(nod, u, v, 0, C - 1);
else if(l < r) {
int mid = (l + r) / 2;
return gcd2(queryBig(p, q, u, v, l, mid, 2 * nod),
queryBig(p, q, u, v, mid + 1, r, 2 * nod + 1));
}
return 0;
}
void init(int _R, int _C) {
R = _R;
C = _C;
aint = new long long*[min(4094, 1+4*_R)];
for(int i = 0; i < min(4094, 1 + 4 * _R); ++i) {
aint[i] = new long long[min(4094, 1+4*_C)];
for(int j = 0; j < min(4094, 1 + 4 * _C); ++j)
aint[i][j] = 0LL;
}
}
void update(int P, int Q, long long K) {
updateBig(P, Q, K, 0, R - 1);
//updateSmall(P, Q, K, 0, C - 1);
//aint[P][Q] = K;
}
long long calculate(int P, int Q, int U, int V) {
//long long rez = 0LL;
//for(int i = P; i <= U; ++i)
// for(int j = Q; j <= V; ++j)
// rez = gcd2(aint[i][j], rez);
//long long rez = 0LL;
//for(int i = P; i <= U; ++i)
// rez = gcd2(rez, querySmall(i, Q, V, 0, C - 1));
return queryBig(P, U, Q, V, 0, R - 1);
}
Compilation message
grader.c: In function 'int main()':
grader.c:18:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
int res;
^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Correct |
4 ms |
1664 KB |
Output is correct |
3 |
Correct |
4 ms |
1536 KB |
Output is correct |
4 |
Correct |
2 ms |
384 KB |
Output is correct |
5 |
Correct |
4 ms |
1536 KB |
Output is correct |
6 |
Correct |
4 ms |
1664 KB |
Output is correct |
7 |
Correct |
2 ms |
384 KB |
Output is correct |
8 |
Correct |
2 ms |
768 KB |
Output is correct |
9 |
Correct |
3 ms |
1536 KB |
Output is correct |
10 |
Correct |
3 ms |
1536 KB |
Output is correct |
11 |
Correct |
3 ms |
1664 KB |
Output is correct |
12 |
Correct |
2 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
3 |
Correct |
2 ms |
256 KB |
Output is correct |
4 |
Runtime error |
5 ms |
3072 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
4 ms |
1536 KB |
Output is correct |
3 |
Correct |
4 ms |
1536 KB |
Output is correct |
4 |
Correct |
2 ms |
384 KB |
Output is correct |
5 |
Correct |
3 ms |
1536 KB |
Output is correct |
6 |
Correct |
3 ms |
1536 KB |
Output is correct |
7 |
Correct |
2 ms |
384 KB |
Output is correct |
8 |
Correct |
2 ms |
640 KB |
Output is correct |
9 |
Correct |
3 ms |
1536 KB |
Output is correct |
10 |
Correct |
3 ms |
1536 KB |
Output is correct |
11 |
Correct |
3 ms |
1536 KB |
Output is correct |
12 |
Correct |
1524 ms |
129796 KB |
Output is correct |
13 |
Correct |
2692 ms |
126524 KB |
Output is correct |
14 |
Correct |
1131 ms |
137092 KB |
Output is correct |
15 |
Correct |
3183 ms |
137036 KB |
Output is correct |
16 |
Correct |
540 ms |
136708 KB |
Output is correct |
17 |
Correct |
2206 ms |
137912 KB |
Output is correct |
18 |
Correct |
2618 ms |
138084 KB |
Output is correct |
19 |
Correct |
2524 ms |
138172 KB |
Output is correct |
20 |
Correct |
2640 ms |
137604 KB |
Output is correct |
21 |
Correct |
2 ms |
256 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
384 KB |
Output is correct |
2 |
Correct |
5 ms |
1664 KB |
Output is correct |
3 |
Correct |
4 ms |
1712 KB |
Output is correct |
4 |
Correct |
2 ms |
384 KB |
Output is correct |
5 |
Correct |
3 ms |
1536 KB |
Output is correct |
6 |
Correct |
3 ms |
1536 KB |
Output is correct |
7 |
Correct |
2 ms |
384 KB |
Output is correct |
8 |
Correct |
2 ms |
640 KB |
Output is correct |
9 |
Correct |
4 ms |
1664 KB |
Output is correct |
10 |
Correct |
3 ms |
1664 KB |
Output is correct |
11 |
Correct |
3 ms |
1664 KB |
Output is correct |
12 |
Runtime error |
6 ms |
3072 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
13 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
4 ms |
1536 KB |
Output is correct |
3 |
Correct |
4 ms |
1536 KB |
Output is correct |
4 |
Correct |
2 ms |
384 KB |
Output is correct |
5 |
Correct |
3 ms |
1536 KB |
Output is correct |
6 |
Correct |
3 ms |
1536 KB |
Output is correct |
7 |
Correct |
2 ms |
384 KB |
Output is correct |
8 |
Correct |
3 ms |
640 KB |
Output is correct |
9 |
Correct |
4 ms |
1664 KB |
Output is correct |
10 |
Correct |
4 ms |
1536 KB |
Output is correct |
11 |
Correct |
3 ms |
1664 KB |
Output is correct |
12 |
Runtime error |
5 ms |
3072 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
13 |
Halted |
0 ms |
0 KB |
- |