# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
199445 | TadijaSebez | 어르신 집배원 (BOI14_postmen) | C++11 | 574 ms | 64460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
const int N=500050;
int was[N],wse[N];
vector<pair<int,int>> E[N];
vector<int> tmp;
vector<vector<int>> ans;
int DFS(int u){
was[u]=1;
while(E[u].size()){
auto e=E[u].back();
if(wse[e.second])E[u].pop_back();
else{
int v=e.first;
wse[e.second]=1;
if(was[v]){
tmp.clear();
tmp.pb(u);
was[u]=0;
return v;
}else{
int t=DFS(v);
if(t!=u){
tmp.pb(u);
was[u]=0;
return t;
}
tmp.pb(u);
ans.pb(tmp);
}
}
}
return -1;
}
int main(){
int n,m;
scanf("%i %i",&n,&m);
for(int i=1,u,v;i<=m;i++)scanf("%i %i",&u,&v),E[u].pb({v,i}),E[v].pb({u,i});
for(int i=1;i<=n;i++)DFS(i);
for(auto cyc:ans){
for(int u:cyc)printf("%i ",u);
printf("\n");
}
return 0;
}
컴파일 시 표준 에러 (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... |