# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
115992 | ckodser | 어르신 집배원 (BOI14_postmen) | C++11 | 612 ms | 55656 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll int
#define pb push_back
#define mp make_pair
#define ld long double
#define F first
#define S second
#define pii pair<ll,ll>
using namespace :: std;
const ll mod=1e9+7;
const ll maxn=5e5+500;
const ll inf=1e9+900;
vector<ll> ger[maxn];
ll s[maxn];
ll t[maxn];
bool vis[maxn];
ll l[maxn];
stack<ll> ans;
bool inAns[maxn];
void dfs(ll a){
while(l[a]<ger[a].size()){
ll e=ger[a][l[a]];
l[a]++;
if(!vis[e]){
vis[e]=1;
dfs(s[e]^t[e]^a);
}
}
if(inAns[a]){
while(ans.top()!=a){
printf("%d ",ans.top());
inAns[ans.top()]=0;
ans.pop();
}
printf("%d\n",a);
}else{
ans.push(a);
inAns[a]=1;
}
}
int main(){
ll n,m;
scanf("%d%d",&n,&m);
for(ll i=0;i<m;i++){
scanf("%d%d",&s[i],&t[i]);
ger[s[i]].pb(i);
ger[t[i]].pb(i);
}
dfs(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... |