# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
63155 | khsoo01 | One-Way Streets (CEOI17_oneway) | C++11 | 219 ms | 44988 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define X first
#define Y second
using namespace std;
typedef pair<int,int> pii;
const int N = 100005;
int n, m, q, ans[N], dep[N], p[N], dir[N];
bool vis[N], bc[N];
vector<int> adj[N];
vector<pii> edg;
struct disj {
int par[N];
void init () {iota(par, par+n+1, 0);}
int Find (int X) {
if(par[X] == X) return X;
return par[X] = Find(par[X]);
}
void Union (int A, int B) {
A = Find(A); B = Find(B);
if(A == B) return;
par[A] = B;
}
} uf;
void calc (int C, int P) {
if(vis[C]) return;
vis[C] = true;
컴파일 시 표준 에러 (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... |