# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
31560 | Dat160601 | 어르신 집배원 (BOI14_postmen) | C++14 | 358 ms | 25368 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define fi first
#define se second
int n,u,v,m,vis[500007],hav[500007],cnt=0,ed[1000007],to[1000007],last[1000007],pre[1000007];
stack <int> res;
vector <int> ans;
inline void addedge(int u,int v,int i){
cnt++;
to[cnt]=v;
ed[cnt]=i;
pre[cnt]=last[u];
last[u]=cnt;
cnt++;
to[cnt]=u;
ed[cnt]=i;
pre[cnt]=last[v];
last[v]=cnt;
}
inline void dfs(int k){
stack <int> st;
st.push(k);
while(!st.empty()){
int u=st.top(),ok=0;
for(int i=last[u];i;i=pre[i]){
int v=to[i];
int id=ed[i];
last[u]=pre[i];
if(vis[id]==1) continue;
vis[id]=1;
ok=1;
st.push(v);
break;
}
if(!ok){
ans.pb(u);
st.pop();
}
}
}
int main(){
scanf("%d %d",&n,&m);
for(int i=1;i<=m;i++){
scanf("%d %d",&u,&v);
addedge(u,v,i);
}
dfs(1);
stack <int> stl;
for(int i=0;i<(int)ans.size();i++){
u=ans[i];
if(hav[u]){
while(!stl.empty() && stl.top()!=u){
printf("%d ",stl.top());
hav[stl.top()]=0;
stl.pop();
}
printf("%d\n",u);
}
else{
hav[u]=1;
stl.push(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... |