#include "game.h"
#include <bits/stdc++.h>
using namespace std;
typedef unsigned long ll;
ll gcd2(ll X, ll Y) {
ll tmp;
while (X != Y && Y != 0) {
tmp = X;
X = Y;
Y = tmp % Y;
}
return X;
}
int n;
int nc=0;
struct NodeY{
int s,e;
ll v;
NodeY *l = NULL;
NodeY *r = NULL;
NodeY(int _s, int _e){
nc++;
s=_s;e=_e;
v=0;
}
void makeL(){
if (l!=NULL){
return;
}
l = new NodeY(s,(s+e)/2);
}
void makeR(){
if (r!=NULL){
return;
}
r = new NodeY((s+e)/2+1,e);
}
ll getL(){
if (l==NULL){
return 0;
}
return l->v;
}
ll getR(){
if (r==NULL){
return 0;
}
return r->v;
}
void update(int ind, ll val){
//cout<<"y "<<s<<' '<<e<<'\n';
//cout<<"u "<<ind<<' '<<val<<'\n';
if (s==e){
v=val;
return;
}
if (ind<=(s+e)/2){
makeL();
l->update(ind,val);
} else {
makeR();
r->update(ind,val);
}
v=gcd2(getL(),getR());
}
ll queryL(int ya, int yb){
if (l==NULL){
return 0;
}
return l->query(ya,yb);
}
ll queryR(int ya, int yb){
if (r==NULL){
return 0;
}
return r->query(ya,yb);
}
ll query(int ya, int yb){
if (s==ya&&e==yb){
return v;
}
int m = (s+e)/2;
if (yb<=m){
return queryL(ya,yb);
} else if (m<ya){
return queryR(ya,yb);
} else {
return gcd2(queryL(ya,m),queryR(m+1,yb));
}
}
void combine(NodeY *lc, NodeY *rc, int ind){
//cout<<s<<' '<<e<<' '<<"com\n";
int m = (s+e)/2;
if (s==e){
v=gcd2((lc==NULL)?0:lc->v,(rc==NULL)?0:rc->v);
return;
}
if (lc==NULL&&rc==NULL){
v=0;
return;
}
if (ind<=m){
makeL();
l->combine((lc==NULL)?(NodeY*)NULL:lc->l,(rc==NULL)?(NodeY*)NULL:rc->l,ind);
} else {
makeR();
r->combine((lc==NULL)?(NodeY*)NULL:lc->r,(rc==NULL)?(NodeY*)NULL:rc->r,ind);
}
v=gcd2((l==NULL)?0:l->v,(r==NULL)?0:r->v);
}
};
struct NodeX{
int s,e;
NodeY *v;
NodeX *l = NULL;
NodeX *r = NULL;
NodeX(int _s, int _e){
nc++;
s=_s;e=_e;
v=new NodeY(0,n-1);
}
void makeL(){
if (l!=NULL){
return;
}
l = new NodeX(s,(s+e)/2);
}
void makeR(){
if (r!=NULL){
return;
}
r = new NodeX((s+e)/2+1,e);
}
void update(int indx, int indy, ll val){
//cout<<"x "<<s<<' '<<e<<'\n';
//cout<<"u "<<indx<<' '<<indy<<' '<<val<<'\n';
if (s==e){
v->update(indy,val);
return;
}
if (indx<=(s+e)/2){
makeL();
l->update(indx,indy,val);
} else {
makeR();
r->update(indx,indy,val);
}
//cout<<"combine\n";
v->combine((l==NULL)?(NodeY*)NULL:l->v,(r==NULL)?(NodeY*)NULL:r->v,indy); //???
}
ll queryL(int xa, int xb, int ya, int yb){
if (l==NULL){
return 0;
}
return l->query(xa,xb,ya,yb);
}
ll queryR(int xa, int xb, int ya, int yb){
if (r==NULL){
return 0;
}
return r->query(xa,xb,ya,yb);
}
ll query(int xa, int xb, int ya, int yb){
int m = (s+e)/2;
assert(xa<=xb&&ya<=yb);
if (s==xa&&e==xb){
return v->query(ya,yb);
}
if (xb<=m){
return queryL(xa,xb,ya,yb);
} else if (m<xa){
return queryR(xa,xb,ya,yb);
} else {
return gcd2(queryL(xa,m,ya,yb),queryR(m+1,xb,ya,yb));
}
}
};
NodeX *root;
int x,y;
void init(int R, int C) {
/* ... */
x=R;y=C;
n=y;
root = new NodeX(0,x-1);
}
void update(int P, int Q, long long K) {
/* ... */
root->update(P,Q,K);
}
long long calculate(int P, int Q, int U, int V) {
/* ... */
//cout<<nc<<'\n';
return root->query(P,U,Q,V);
}
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 |
1 ms |
256 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
512 KB |
Output is correct |
4 |
Correct |
0 ms |
256 KB |
Output is correct |
5 |
Correct |
0 ms |
256 KB |
Output is correct |
6 |
Correct |
1 ms |
512 KB |
Output is correct |
7 |
Correct |
1 ms |
384 KB |
Output is correct |
8 |
Correct |
0 ms |
384 KB |
Output is correct |
9 |
Correct |
1 ms |
512 KB |
Output is correct |
10 |
Correct |
1 ms |
384 KB |
Output is correct |
11 |
Correct |
1 ms |
384 KB |
Output is correct |
12 |
Correct |
1 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
256 KB |
Output is correct |
2 |
Correct |
0 ms |
256 KB |
Output is correct |
3 |
Correct |
1 ms |
256 KB |
Output is correct |
4 |
Correct |
562 ms |
21240 KB |
Output is correct |
5 |
Correct |
395 ms |
21240 KB |
Output is correct |
6 |
Correct |
505 ms |
18768 KB |
Output is correct |
7 |
Correct |
561 ms |
18552 KB |
Output is correct |
8 |
Correct |
376 ms |
13432 KB |
Output is correct |
9 |
Correct |
550 ms |
18808 KB |
Output is correct |
10 |
Correct |
522 ms |
18168 KB |
Output is correct |
11 |
Correct |
1 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
512 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
512 KB |
Output is correct |
4 |
Correct |
0 ms |
256 KB |
Output is correct |
5 |
Correct |
0 ms |
256 KB |
Output is correct |
6 |
Correct |
1 ms |
512 KB |
Output is correct |
7 |
Correct |
0 ms |
256 KB |
Output is correct |
8 |
Correct |
0 ms |
384 KB |
Output is correct |
9 |
Correct |
1 ms |
512 KB |
Output is correct |
10 |
Correct |
1 ms |
384 KB |
Output is correct |
11 |
Correct |
1 ms |
384 KB |
Output is correct |
12 |
Correct |
879 ms |
25848 KB |
Output is correct |
13 |
Correct |
1378 ms |
12692 KB |
Output is correct |
14 |
Correct |
309 ms |
6008 KB |
Output is correct |
15 |
Correct |
1595 ms |
17144 KB |
Output is correct |
16 |
Correct |
244 ms |
31092 KB |
Output is correct |
17 |
Correct |
904 ms |
21532 KB |
Output is correct |
18 |
Correct |
1586 ms |
32672 KB |
Output is correct |
19 |
Correct |
1342 ms |
32760 KB |
Output is correct |
20 |
Correct |
1319 ms |
32252 KB |
Output is correct |
21 |
Correct |
0 ms |
256 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
256 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
496 KB |
Output is correct |
4 |
Correct |
0 ms |
256 KB |
Output is correct |
5 |
Correct |
0 ms |
256 KB |
Output is correct |
6 |
Correct |
1 ms |
512 KB |
Output is correct |
7 |
Correct |
1 ms |
256 KB |
Output is correct |
8 |
Correct |
0 ms |
384 KB |
Output is correct |
9 |
Correct |
1 ms |
512 KB |
Output is correct |
10 |
Correct |
1 ms |
384 KB |
Output is correct |
11 |
Correct |
1 ms |
384 KB |
Output is correct |
12 |
Correct |
537 ms |
21232 KB |
Output is correct |
13 |
Correct |
378 ms |
21112 KB |
Output is correct |
14 |
Correct |
505 ms |
18808 KB |
Output is correct |
15 |
Correct |
571 ms |
18556 KB |
Output is correct |
16 |
Correct |
392 ms |
13368 KB |
Output is correct |
17 |
Correct |
557 ms |
18668 KB |
Output is correct |
18 |
Correct |
512 ms |
18336 KB |
Output is correct |
19 |
Correct |
889 ms |
25928 KB |
Output is correct |
20 |
Correct |
1350 ms |
12920 KB |
Output is correct |
21 |
Correct |
312 ms |
5824 KB |
Output is correct |
22 |
Correct |
1630 ms |
17072 KB |
Output is correct |
23 |
Correct |
240 ms |
31096 KB |
Output is correct |
24 |
Correct |
900 ms |
21388 KB |
Output is correct |
25 |
Correct |
1558 ms |
32620 KB |
Output is correct |
26 |
Correct |
1344 ms |
32764 KB |
Output is correct |
27 |
Correct |
1354 ms |
32260 KB |
Output is correct |
28 |
Runtime error |
712 ms |
256004 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
29 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
256 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
512 KB |
Output is correct |
4 |
Correct |
0 ms |
256 KB |
Output is correct |
5 |
Correct |
0 ms |
256 KB |
Output is correct |
6 |
Correct |
1 ms |
512 KB |
Output is correct |
7 |
Correct |
0 ms |
256 KB |
Output is correct |
8 |
Correct |
1 ms |
256 KB |
Output is correct |
9 |
Correct |
1 ms |
512 KB |
Output is correct |
10 |
Correct |
1 ms |
384 KB |
Output is correct |
11 |
Correct |
1 ms |
384 KB |
Output is correct |
12 |
Correct |
553 ms |
21244 KB |
Output is correct |
13 |
Correct |
380 ms |
21176 KB |
Output is correct |
14 |
Correct |
508 ms |
18808 KB |
Output is correct |
15 |
Correct |
589 ms |
18552 KB |
Output is correct |
16 |
Correct |
385 ms |
13332 KB |
Output is correct |
17 |
Correct |
551 ms |
18812 KB |
Output is correct |
18 |
Correct |
527 ms |
18424 KB |
Output is correct |
19 |
Correct |
884 ms |
25720 KB |
Output is correct |
20 |
Correct |
1372 ms |
12980 KB |
Output is correct |
21 |
Correct |
307 ms |
5700 KB |
Output is correct |
22 |
Correct |
1601 ms |
17272 KB |
Output is correct |
23 |
Correct |
246 ms |
31096 KB |
Output is correct |
24 |
Correct |
980 ms |
21368 KB |
Output is correct |
25 |
Correct |
1593 ms |
32632 KB |
Output is correct |
26 |
Correct |
1359 ms |
32888 KB |
Output is correct |
27 |
Correct |
1391 ms |
32096 KB |
Output is correct |
28 |
Runtime error |
653 ms |
256004 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
29 |
Halted |
0 ms |
0 KB |
- |