# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
306438 | Temmie | Game (IOI13_game) | C++17 | 0 ms | 0 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>
typedef long long ll;
const ll size = 1073741824;
struct Node {
Node* tl, * tr, * bl, * br;
ll topLx, topLy, recSize;
ll valu;
Node(ll X, ll Y, ll recsize) :
tl(nullptr), tr(nullptr), bl(nullptr), br(nullptr),
topLx(X), topLy(Y), recSize(recsize),
valu(0)
{ }
~Node() {
if (tl) delete(tl);
if (tl) delete(tr);
if (bl) delete(bl);
if (br) delete(br);
}
void update(ll x, ll y, ll val) {
if (x < topLx || x >= topLx + recSize || y < topLy || y >= topLy + recSize) return;