# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
26872 | top34051 | Senior Postmen (BOI14_postmen) | C++14 | 1094 ms | 23416 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define maxn 500005
int n,m;
int out[maxn];
bool vis[maxn];
vector<pair<int,int> > from[maxn];
stack<pair<int,int> > st;
void dfs(int x,int last) {
int i,y;
if(out[x]) {
while(!st.empty()) {
y = st.top().first;
printf("%d ",y);
out[y]--;
st.pop();
if(y==x) break;
}
printf("\n");
}
for(i=0;i<from[x].size();i++) {
if(!vis[from[x][i].second]) {
out[x]++;
st.push({x,from[x][i].first});
vis[from[x][i].second] = 1;
dfs(from[x][i].first,x);
}
}
}
main() {
Compilation message (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... |