Submission #1014609

#TimeUsernameProblemLanguageResultExecution timeMemory
1014609huutuanGame (IOI13_game)C++14
63 / 100
1304 ms256000 KiB
#pragma GCC optimize("Os") #include "game.h" 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; } #include <bits/stdc++.h> using namespace std; int R, C; struct Node{ long long val; Node *l; Node *r; Node (){ val=0; l=nullptr; r=nullptr; } }; struct SegmentTree{ Node *root; SegmentTree *l; SegmentTree *r; SegmentTree(){ root=new Node(); l=nullptr; r=nullptr; } void update(Node *t, Node *tl, Node *tr, int l, int r, int pos, long long val, bool sussy){ if (l==r){ if (sussy) t->val=gcd2(tl?tl->val:0, tr?tr->val:0); else t->val=val; return; } int mid=(l+r)>>1; if (pos<=mid){ if (!t->l) t->l=new Node(); update(t->l, tl?tl->l:nullptr, tr?tr->l:nullptr, l, mid, pos, val, sussy); }else{ if (!t->r) t->r=new Node(); update(t->r, tl?tl->r:nullptr, tr?tr->r:nullptr, mid+1, r, pos, val, sussy); } t->val=gcd2(t->l?t->l->val:0, t->r?t->r->val:0); } long long get(Node *t, int l, int r, int L, int R){ if (r<L || R<l) return 0; if (L<=l && r<=R) return t->val; int mid=(l+r)>>1; return gcd2(t->l?get(t->l, l, mid, L, R):0, t->r?get(t->r, mid+1, r, L, R):0); } }; struct SegmentTree2d{ SegmentTree *root; SegmentTree2d(){ root=new SegmentTree(); } void update(SegmentTree *t, int l, int r, int x, int y, long long val){ if (l!=r){ int mid=(l+r)>>1; if (x<=mid){ if (!t->l) t->l=new SegmentTree(); update(t->l, l, mid, x, y, val); }else{ if (!t->r) t->r=new SegmentTree(); update(t->r, mid+1, r, x, y, val); } } t->update(t->root, t->l?t->l->root:nullptr, t->r?t->r->root:nullptr, 1, 1e9, y, val, l!=r); } long long get(SegmentTree *t, int l, int r, int lx, int rx, int ly, int ry){ if (rx<l || r<lx) return 0; if (lx<=l && r<=rx) return t->get(t->root, 1, 1e9, ly, ry); int mid=(l+r)>>1; return gcd2(t->l?get(t->l, l, mid, lx, rx, ly, ry):0, t->r?get(t->r, mid+1, r, lx, rx, ly, ry):0); } } st; void init(int _R, int _C) { R=_R; C=_C; } void update(int P, int Q, long long K) { ++P; ++Q; st.update(st.root, 1, 1e9, P, Q, K); } long long calculate(int P, int Q, int U, int V) { ++P; ++Q; ++U; ++V; return st.get(st.root, 1, 1e9, P, U, Q, V); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...