# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
31553 | Kanvie | 어르신 집배원 (BOI14_postmen) | C++14 | 1087 ms | 16608 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define fi first
#define se second
typedef pair<int,int> pii;
int n,m,vv,u,cnt,lol;
vector<pii>v[500001];
bool visit[500001],fi,edge[500001];
stack<int>s,ss;
inline bool chk(int x)
{
if(!edge[x]){edge[x]=true;return true;}
else return false;
}
void push_db(int x)
{
if(!visit[x])
{
ss.push(x);
visit[x]=true;
return;
}
else
{
if(fi)printf("\n");
else fi=true;
while(1)
{
lol=ss.top();
if(lol!=x)printf("%d ",lol);
else printf("%d",lol);
if(lol!=x){visit[lol]=false;ss.pop();}
else break;
}
}
}
int x,y;
int main()
{
ios_base::sync_with_stdio(false);
scanf("%d%d",&n,&m);
for(int i=1;i<=m;++i)
{
scanf("%d%d",&x,&y);
++cnt;
v[x].push_back({y,cnt});
v[y].push_back({x,cnt});
}
s.push(1);
fi=false;
while(!s.empty())
{
u=s.top();
for(int i=0;i<v[u].size();++i)
{
vv=v[u][i].fi;
if(chk(v[u][i].se))break;
if(i==v[u].size()-1)vv=-1;
}
if(vv!=-1)s.push(vv);
else {s.pop();push_db(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... |