# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
834002 | 2023-08-22T10:05:53 Z | finn__ | 식물 비교 (IOI20_plants) | C++17 | 4000 ms | 7148 KB |
#include <bits/stdc++.h> #include "plants.h" using namespace std; constexpr size_t N = 200000; size_t n; int subtask, s[N], h[N]; void init(int k, std::vector<int> r) { n = r.size(); if (k == 2) subtask = 1; else subtask = 2; if (subtask == 1) { partial_sum(r.begin(), r.end(), s); } else { for (size_t i = 0; i < n - 1; ++i) { int conseq_nonzero = 0, next_max = 0; for (size_t j = 0; j < 2 * n;) { while (j < 2 * n && (!r[j % n] || r[j % n] < 0)) ++j; int d = 0; size_t k = j; while (k < 2 * n && r[k % n]) { if (r[k % n] > 0) ++d; ++k; } if (d > conseq_nonzero) conseq_nonzero = d, next_max = k % n; j = k; } h[next_max] = n - i; r[next_max] = -1; for (int j = next_max - k + 1; j < next_max; ++j) r[(j + (int)n) % n]--; } } } int compare_plants(int x, int y) { if (subtask == 1) { int z = s[y - 1] - (x ? s[x - 1] : 0); return !z ? 1 : (z == y - x ? -1 : (!(s[n - 1] - z) ? -1 : ((s[n - 1] - z == n - (y - x) ? 1 : 0)))); } else { return h[x] > h[y] ? 1 : -1; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 0 ms | 212 KB | Output is correct |
6 | Correct | 37 ms | 3052 KB | Output is correct |
7 | Correct | 41 ms | 3352 KB | Output is correct |
8 | Correct | 54 ms | 4976 KB | Output is correct |
9 | Correct | 54 ms | 4940 KB | Output is correct |
10 | Correct | 54 ms | 4940 KB | Output is correct |
11 | Correct | 59 ms | 4984 KB | Output is correct |
12 | Correct | 53 ms | 4940 KB | Output is correct |
13 | Correct | 50 ms | 4940 KB | Output is correct |
14 | Correct | 51 ms | 5004 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Incorrect | 0 ms | 212 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Incorrect | 0 ms | 212 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 224 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 81 ms | 3060 KB | Output is correct |
4 | Execution timed out | 4091 ms | 7148 KB | Time limit exceeded |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Incorrect | 0 ms | 212 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Incorrect | 0 ms | 212 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 0 ms | 212 KB | Output is correct |
6 | Correct | 37 ms | 3052 KB | Output is correct |
7 | Correct | 41 ms | 3352 KB | Output is correct |
8 | Correct | 54 ms | 4976 KB | Output is correct |
9 | Correct | 54 ms | 4940 KB | Output is correct |
10 | Correct | 54 ms | 4940 KB | Output is correct |
11 | Correct | 59 ms | 4984 KB | Output is correct |
12 | Correct | 53 ms | 4940 KB | Output is correct |
13 | Correct | 50 ms | 4940 KB | Output is correct |
14 | Correct | 51 ms | 5004 KB | Output is correct |
15 | Correct | 1 ms | 212 KB | Output is correct |
16 | Correct | 0 ms | 212 KB | Output is correct |
17 | Correct | 0 ms | 212 KB | Output is correct |
18 | Incorrect | 0 ms | 212 KB | Output isn't correct |
19 | Halted | 0 ms | 0 KB | - |