# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
269758 | Atill83 | Easter Eggs (info1cup17_eastereggs) | C++14 | 27 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
vector<int> adj[550];
int tin[550];
int tim = 0;
void dfs(int v, int par){
tin[v] = tim++;
for(int j: adj[v]){
if(j != par){
dfs(j, v);
}
}
}
int findEgg (int N, vector < pair < int, int > > bridges)
{
for(int i = 1; i <= N; i++){
adj[i].clear();
tin[i] = -1;
}
for(int i = 0; i < N - 1; i++){
int u = bridges[i].first, v = bridges[i].second;
adj[u].push_back(v);
adj[v].push_back(u);
컴파일 시 표준 에러 (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... |