# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
97137 | E869120 | Game (IOI13_game) | C++14 | 7924 ms | 245824 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
int cnts = 0;
long long gcd2(long long X, long long Y) {
if (Y == 0) return X;
return gcd2(Y, X % Y);
}
long long val[12100000]; int ll[12100000], mm[12100000], rr[12100000], vv;
class MeleeSegmentTree {
public:
int size_, root;
void pushes() {
val[vv] = 0; ll[vv] = -1; mm[vv] = -1; rr[vv] = -1;
vv++;
}
void init(int I) {
size_ = 1;
while (size_ < I) size_ *= 3;
root = vv;
pushes();
}
void update_(unsigned int p, long long x, unsigned int cl, unsigned int cr, int u) {
if (cr - cl == 1) { val[u] = x; return; }
if (p * 3 < (cl + cl + cr)) {
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |