제출 #6084

#제출 시각아이디문제언어결과실행 시간메모리
6084baneling100어르신 집배원 (BOI14_postmen)C++98
38 / 100
1090 ms22112 KiB
#include <stdio.h> #include <algorithm> #include <vector> using namespace std; typedef pair <int,int> ppair; vector <ppair> A[500001]; int N, M, Ban[500001], Ans[500001], Top, S[500001], Len, Check[500001]; void input(void) { int i, u, v; scanf("%d %d",&N,&M); for(i=1 ; i<=M ; i++) { scanf("%d %d",&u,&v); A[u].push_back(make_pair(v,i)); A[v].push_back(make_pair(u,i)); } } void process(int now) { int i, j=A[now].size(); for(i=0 ; i<j ; i++) if(Ban[A[now][i].second]==0) { Ban[A[now][i].second]=1; process(A[now][i].first); } Ans[++Top]=now; } void output(void) { int i; for(i=1 ; i<=Top ; i++) { if(Check[Ans[i]]) { while(S[Len]!=Ans[i]) { printf("%d ",S[Len]); Check[S[Len]]=0; Len--; } printf("%d\n",S[Len]); } else { Check[Ans[i]]=1; S[++Len]=Ans[i]; } } } int main(void) { input(); process(1); output(); return 0; }

컴파일 시 표준 에러 (stderr) 메시지

postmen.cpp: In function 'void input()':
postmen.cpp:15:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d",&N,&M);
     ~~~~~^~~~~~~~~~~~~~~
postmen.cpp:18:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d %d",&u,&v);
         ~~~~~^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...