# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
991389 | SanguineChameleon | 은하철도 (APIO24_train) | C++17 | 1075 ms | 13656 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "train.h"
#include <bits/stdc++.h>
using namespace std;
const int inf1 = 1e9 + 20;
const long long inf2 = 1e18L + 20;
struct planet {
int L, R;
long long cost;
planet(long long _cost): L(-1), R(-2), cost(_cost) {};
};
struct train {
int L, R, u, v;
long long cost;
train(int _L, int _R, int _u, int _v, long long _cost): L(_L), R(_R), u(_u), v(_v), cost(_cost) {};
};
struct meal {
int L, R;
meal(int _L, int _R): L(_L), R(_R) {};
};
struct event {
int time, type, id;
# | 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... |