# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
335511 | couplefire | Werewolf (IOI18_werewolf) | C++17 | 1545 ms | 90124 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 <bits/stdc++.h>
#include "werewolf.h"
using namespace std;
#define REP(i,n) for(int i=0;i<(n);++i)
struct tree_2d_t {
vector<pair<int,int> > pts;
vector<vector<int> > nodes;
int base;
int n;
tree_2d_t(const vector<pair<int,int> >& points) {
pts = points;
sort(pts.begin(), pts.end());
n = pts.size();
base = 1;
while (base < n) { base *= 2; }
nodes.resize(2*base);
REP(i, n) {
nodes[base + i].push_back(pts[i].second);
}
for (int i = base-1; i >= 1; --i) {
merge(nodes[2*i].begin(), nodes[2*i].end(),
nodes[2*i+1].begin(), nodes[2*i+1].end(),
back_inserter(nodes[i]));
}
}
int query(int x, int yl, int yr) {
# | 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... |