# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
979154 | Sharky | 어르신 집배원 (BOI14_postmen) | C++17 | 359 ms | 92664 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 500005;
bool seen[N];
vector<pair<int, int>> adj[N];
vector<int> path;
vector<vector<int>> ans;
int occ[N];
void dfs(int node) {
while (!adj[node].empty()) {
auto [son, idx] = adj[node].back();
adj[node].pop_back();
if (seen[idx]) continue;
seen[idx] = true;
dfs(son);
}
if (occ[node] != -1) {
int idx = occ[node];
vector<int> tmp;
while (path.size() >= idx + 1) {
tmp.push_back(path.back());
occ[path.back()] = -1;
path.pop_back();
}
reverse(tmp.begin(), tmp.end());
ans.push_back(tmp);
}
occ[node] = path.size();
path.push_back(node);
}
int32_t main() {
ios::sync_with_stdio(0); cin.tie(0);
int n, m;
cin >> n >> m;
for (int i = 1; i <= m; i++) {
int u, v;
cin >> u >> v;
adj[u].push_back({v, i});
adj[v].push_back({u, i});
}
for (int i = 1; i <= n; i++) occ[i] = -1;
for (int i = 1; i <= n; i++) {
while (!adj[i].empty()) dfs(i);
if (path.size() > 1) ans.push_back(path);
path.clear();
}
for (auto& path : ans) {
for (auto& e : path) cout << e << ' ';
cout << '\n';
}
}
컴파일 시 표준 에러 (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... |