# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
197447 | quocnguyen1012 | One-Way Streets (CEOI17_oneway) | C++14 | 363 ms | 34860 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define Task "ONEWAY"
using namespace std;
typedef long long ll;
const int maxn = 1e5 + 5;
int nTime=0;
vector <int> adj[maxn];
int Visited[maxn], Low[maxn], Parent[maxn];
int U[maxn], V[maxn];
int N, M, P;
int st[maxn], en[maxn];
bool Bridge[maxn];
bool minimize(int &a, int b){
if (a>b) a=b;
else return false;
return true;
}
void visit(int u){
///cerr << u << ' ' << Parent[u] << '\n';
Low[u] = Visited[u] = ++nTime;
컴파일 시 표준 에러 (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... |