# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
16847 | kdh9949 | 어르신 집배원 (BOI14_postmen) | C++98 | 9 ms | 708 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<stdio.h>
#include<stack>
using namespace std;
struct E{int dest,next;};
stack<int> st;
E elist[1001010];
int fe[500010],vis[500010],chk[1000010];
int n,m,a,b;
void f(int node){
if(vis[node]){
while(st.top() != node){
printf("%d ",st.top());
vis[st.top()]=0;
st.pop();
}
st.pop();
printf("%d\n",node);
}
vis[node]=1;
for(int i=fe[node];i;i=elist[i].next){
if(chk[i]){
fe[node]=elist[i].next;
continue;
}
chk[i]=chk[i+(i%2?-1:1)]=1;
fe[node]=elist[i].next;
st.push(node);
f(elist[i].dest);
}
}
int main(){
scanf("%d%d",&n,&m);
for(int i=1;i<=m;i++){
scanf("%d%d",&a,&b);
elist[2*i]={b,fe[a]};
elist[2*i+1]={a,fe[b]};
fe[a]=2*i;
fe[b]=2*i+1;
}
f(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... |