| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 523417 | eecs | 던전 (IOI21_dungeons) | C++17 | 3809 ms | 1675384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dungeons.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int B = 16, L = 7, INF = 0x3f3f3f3f;
const int maxn = 400005;
int n, lim[L], s[maxn], p[maxn], w[maxn], l[maxn];
struct node {
int to; ll sum; int req;
node operator + (const node b) const {
return (node){b.to, sum + b.sum, b.req == INF ? req : max(0LL, min((ll)req, b.req - sum))};
}
} f[L][25][maxn];
void init(int _n, vector<int> _s, vector<int> _p, vector<int> _w, vector<int> _l) {
n = _n, w[n] = l[n] = n;
for (int i = 0; i < n; i++) {
s[i] = _s[i], p[i] = _p[i], w[i] = _w[i], l[i] = _l[i];
}
auto init = [&](int X, node g[][maxn]) {
for (int i = 0; i < n; i++) {
g[0][i] = X >= s[i] ? node{w[i], s[i], INF} : node{l[i], p[i], s[i]};
}
for (int k = 1; k < 25; k++) {
for (int i = 0; i < n; i++) {
g[k][i] = g[k - 1][i] + g[k - 1][g[k - 1][i].to];
}
}
};
for (int d = 0; d < L; d++) {
init(lim[d] = !d ? 1 : lim[d - 1] * B, f[d]);
}
}
ll simulate(int x, int _z) {
ll z = _z;
int i = 0;
while (x < n) {
while (i + 1 < L && z >= lim[i + 1]) i++;
for (int j = 24; ~j; j--) {
if (f[i][j][x].to == n || f[i][j][x].req != INF && f[i][j][x].req <= z) continue;
z += f[i][j][x].sum, x = f[i][j][x].to;
}
if (z >= s[x]) z += s[x], x = w[x];
else z += p[x], x = l[x];
}
return z;
}컴파일 시 표준 에러 (stderr) 메시지
| # | 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... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
