이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct ufind {
vector<int> c;
ufind(int n) : c(n) { iota(c.begin(), c.end(), 0); }
int find(int k) { return c[k] == k ? k : (c[k] = find(c[k])); }
void unite(int a, int b) { c[find(a)] = find(b); }
};
int main() {
cin.tie(nullptr);
ios::sync_with_stdio(false);
int n, m; cin >> n >> m;
vector<pair<int, int>> edges;
{
array<ufind, 2> msts{{ufind(n), ufind(n)}};
for (int i = 0; i < m; ++i) {
int a, b; cin >> a >> b; --a; --b;
for (auto& mst : msts) {
if (mst.find(a) != mst.find(b)) {
mst.unite(a, b);
edges.emplace_back(a, b);
break;
}
}
}
}
vector<vector<int>> g(n);
for (auto [a, b] : edges) {
g[a].push_back(b);
g[b].push_back(a);
}
edges.clear();
vector<bool> visited(n);
vector<int> pre(n, -1), low(n, -1);
int timer=0;
auto dfs = [&](auto&& self, int v, int p = -1) -> void {
visited[v] = true;
pre[v] = low[v] = timer++;
bool used_p = false;
for (auto w : g[v]) {
if (w == p && !used_p) { used_p = true; continue; }
if (visited[w]) {
low[v] = min(low[v], pre[w]);
} else {
self(self, w, v);
low[v] = min(low[v], low[w]);
if (low[w] > pre[v]) {
cout << v+1 << ' ' << w+1 << '\n';
}
}
}
};
for (int i = 0; i < n; ++i)
if (!visited[i])
dfs(dfs, i);
}
컴파일 시 표준 에러 (stderr) 메시지
pipes.cpp: In function 'int main()':
pipes.cpp:33:13: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
33 | for (auto [a, b] : edges) {
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |