# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
203507 | abacaba | Olympic Bus (JOI20_ho_t4) | C++14 | 123 ms | 4604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
const long long inf=2e13;
const int N=2e2+5;
const int M=5e4+5;
int n,m,a[N];
int d[3][N][N];
int cost[M];
int curd[N],p[N];
vector<int >g[N];
vector<int >path1,path2;
priority_queue<pair<long long,long long>>q;
int is[2][M];
struct edge{
int u,v,c,d;
edge(){
u=v=c=d=0;
}
};
edge e[M];
컴파일 시 표준 에러 (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... |