이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie();
cout.tie();
int n, m;
cin >> n >> m;
vector<multiset<int>> adj(n);
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
a--; b--;
adj[a].insert(b);
adj[b].insert(a);
}
stack<int> s;
vector<int> visited(n, 0);
for (int i = 0; i < n; i++) {
s.push(i);
while (!s.empty()) {
int current = s.top();
if (visited[current] == 1) {
cout << current+1 << " ";
s.pop();
while (s.top() != current) {
cout << s.top()+1 << " ";
visited[s.top()] = 0;
s.pop();
}
cout << endl;
}
visited[current] = 1;
if (!adj[current].empty()) {
auto it = adj[current].begin();
s.push(*it);
adj[current].erase(it);
adj[*it].erase(adj[*it].find(current));
} else {
s.pop();
visited[current] = 0;
}
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |