# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
364620 | LucaDantas | Senior Postmen (BOI14_postmen) | C++17 | 565 ms | 40924 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<cstdio>
#include<vector>
#include <cassert>
#include<utility>
using namespace std;
#define pb push_back
#define sz(a) (int)(a.size())
constexpr int maxn = 5e5+10;
vector<pair<int,int>> g[maxn];
vector<int> st;
bool mark[maxn], mark_edge[maxn];
void dfs(int i) {
st.pb(i);
while(st.size()) {
int u = st.back();
mark[u] = 1;
while(g[u].size() && mark_edge[g[u].back().second])
g[u].pop_back();
if(!sz(g[u])) break;
int v = g[u].back().first;
mark_edge[g[u].back().second] = 1;
g[u].pop_back();
if(mark[v]) {
printf("%d", v);
while(st.size() && st.back() != v) {
printf(" %d", st.back());
mark[st.back()] = 0;
st.pop_back();
}
printf("\n");
}
else st.pb(v);
}
mark[i] = 0;
st.clear();
}
int main() {
int n, m; scanf("%d %d", &n, &m);
for(int i = 0, a, b; i < m; i++)
scanf("%d %d", &a, &b), g[a].pb({b, i}), g[b].pb({a, i});
for(int i = 1; i <= n; i++)
dfs(i);
}
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... |