#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> pii;
#define f first
#define s second
const int maxn = 1 << 17;
int n;
pii p[maxn];
vector<pii> seg[2 * maxn];
void init(int i, int l, int r) {
if(l == r) {
seg[i].push_back(p[i]);
}
int m = (l + r + 1) / 2;
init(i * 2, l, m - 1);
init(i * 2 + 1, m, r);
seg[i].reserve(seg[i * 2].size() + seg[i * 2 + 1].size());
for(const pii &j : seg[i * 2])
seg[i].push_back(j);
for(const pii &j : seg[i * 2 + 1])
seg[i].push_back(j);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
assert(n <= 1000);
for(int i = 0; i < n; i++) {
cin >> p[i].f >> p[i].s;
}
cout << 0 << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
9 ms |
6520 KB |
Output isn't correct |
2 |
Incorrect |
8 ms |
6520 KB |
Output isn't correct |
3 |
Runtime error |
14 ms |
12936 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
4 |
Runtime error |
16 ms |
13204 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
5 |
Runtime error |
18 ms |
13204 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
6 |
Runtime error |
14 ms |
13220 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
7 |
Runtime error |
14 ms |
13340 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
8 |
Runtime error |
15 ms |
13340 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
9 |
Runtime error |
14 ms |
13340 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
10 |
Runtime error |
15 ms |
13340 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
11 |
Runtime error |
15 ms |
13348 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
12 |
Runtime error |
17 ms |
13348 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
13 |
Runtime error |
19 ms |
13348 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
14 |
Runtime error |
17 ms |
13348 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
15 |
Runtime error |
14 ms |
13348 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
16 |
Runtime error |
18 ms |
13368 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
17 |
Runtime error |
16 ms |
13368 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
18 |
Runtime error |
18 ms |
13368 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
19 |
Runtime error |
18 ms |
13368 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
20 |
Runtime error |
16 ms |
13440 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |