| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1147881 | BlockOG | Wall (IOI14_wall) | C++20 | 3095 ms | 8520 KiB |
// mrrrow mnyaa ;3c
// go play vivid/stasis! it's a really awesome free game on steam
void buildWall(int n, int k, int op[], int left[], int right[], int height[], int finalHeight[]) {
for (int it = 0; it < k; it++) {
if (op[it] == 1) {
for (int i = left[it]; i <= right[it]; i++) {
if (finalHeight[i] < height[it]) finalHeight[i] = height[it];
}
} else {
for (int i = left[it]; i <= right[it]; i++) {
if (finalHeight[i] > height[it]) finalHeight[i] = height[it];
}
}
}
}
| # | 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... | ||||
