| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 490937 | rainboy | Segway (COI19_segway) | C11 | 15 ms | 204 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <string.h>
#define N 20000
#define X 300
#define INF 0x3f3f3f3f
int min(int a, int b) { return a < b ? a : b; }
int main() {
static int ss[N][3], xx[N], yy[N], tt[N], kk[X + 1];
static char accel[X + 1];
int n, m, h, i, x;
scanf("%d", &n);
for (i = 0; i < n; i++)
for (h = 0; h < 3; h++)
scanf("%d", &ss[i][h]);
scanf("%d", &m);
for (h = 0; h < m; h++) {
scanf("%d", &x);
accel[x] = 1;
}
for (i = 0; i < n; i++)
tt[i] = ss[i][0];
while (1) {
int t;
t = INF;
for (i = 0; i < n; i++)
if (xx[i] != X)
t = min(t, tt[i]);
if (t == INF)
break;
for (i = 0; i < n; i++)
if (xx[i] != X && tt[i] == t) {
xx[i]++;
if (xx[i] < X && accel[xx[i]] && yy[i] <= xx[i])
yy[i] = -1;
}
memset(kk, 0, (X + 1) * sizeof *kk);
for (i = 0; i < n; i++)
kk[xx[i]]++;
for (x = X - 1; x >= 0; x--)
kk[x] += kk[x + 1];
for (i = 0; i < n; i++)
if (yy[i] == -1)
yy[i] = xx[i] + kk[xx[i] + 1] % 20;
for (i = 0; i < n; i++)
if (xx[i] != X && tt[i] == t)
tt[i] = yy[i] <= xx[i] ? t + ss[i][xx[i] / (X / 3)] : t + 1;
}
for (i = 0; i < n; i++)
printf("%d\n", tt[i]);
return 0;
}컴파일 시 표준 에러 (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... | ||||
