# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
15990 | myungwoo | 어르신 집배원 (BOI14_postmen) | C++14 | 356 ms | 25044 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define MAXN 500005
#define pb push_back
#define sz(v) ((int)(v).size())
int N, M, K;
int last[MAXN], to[MAXN*2], en[MAXN*2], prv[MAXN*2];
bool VE[MAXN];
vector <int> path;
void add_edge(int a, int b, int e)
{
to[++K] = b; en[K] = e; prv[K] = last[a]; last[a] = K;
to[++K] = a; en[K] = e; prv[K] = last[b]; last[b] = K;
}
void dfs(int n)
{
stack <int> stk;
stk.push(n);
while (!stk.empty()){
int n = stk.top();
bool sw = 0;
for (int i=last[n];i;i=prv[i]){
int t = to[i], e = en[i];
last[n] = prv[i];
if (VE[e]) continue;
VE[e] = 1;
stk.push(t); sw = 1;
break;
}
if (!sw) path.pb(n), stk.pop();
}
}
int main()
{
scanf("%d%d", &N, &M);
for (int i=1;i<=M;i++){
int a, b;
scanf("%d%d", &a, &b);
add_edge(a, b, i);
}
dfs(1);
stack <int> stk;
vector <int> vis(N+1, 0);
for (int t: path){
if (vis[t]){
while (!stk.empty() && stk.top() != t) printf("%d ", stk.top()), vis[stk.top()] = 0, stk.pop();
printf("%d\n", t);
}else{
stk.push(t);
vis[t] = 1;
}
}
}
컴파일 시 표준 에러 (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... |