# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
987689 | anonymous321 | 어르신 집배원 (BOI14_postmen) | C++17 | 600 ms | 62804 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// https://oj.uz/problem/view/BOI14_postmen
#include <bits/stdc++.h>
using namespace std;
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int n, m;
cin >> n >> m;
vector<vector<int>> adj_list (n);
vector<vector<int>> other_id (n);
vector<int> active (n, 0);
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
other_id[a-1].push_back(adj_list[b-1].size());
other_id[b-1].push_back(adj_list[a-1].size());
adj_list[a-1].push_back(b-1);
adj_list[b-1].push_back(a-1);
}
stack<int> s {};
s.push(0);
vector<bool> in_s2 (n, false);
stack<int> s2 {};
while (!s.empty()) {
int v = s.top();
if (adj_list[v].size() > active[v]) {
int it = adj_list[v][active[v]];
int it_id = other_id[v][active[v]];
other_id[adj_list[it][active[it]]][other_id[it][active[it]]] = it_id;
swap(adj_list[it][it_id], adj_list[it][active[it]]);
swap(other_id[it][it_id], other_id[it][active[it]]);
active[it]++;
active[v]++;
s.push(it);
} else {
if (in_s2[s.top()]) {
cout << s.top()+1 << " ";
while (!s2.empty() && s2.top() != s.top()) {
cout << s2.top()+1 << " ";
in_s2[s2.top()] = false;
s2.pop();
}
cout << "\n";
} else {
in_s2[s.top()] = true;
s2.push(s.top());
}
s.pop();
}
}
return 0;
}
컴파일 시 표준 에러 (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... |