이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
int cmp1[100001], cmp2[100001];
vector<int> graph[100001];
bool visited[100001];
int tin[100001], low[100001], timer = 0;
int find(int A, int *cmp) {
while (cmp[A] != A) cmp[A] = cmp[cmp[A]], A = cmp[A];
return A;
}
void onion(int A, int B, int *cmp) {
cmp[find(A, cmp)] = find(B, cmp);
}
void dfs(int node, int parent = 0) {
visited[node] = true;
tin[node] = low[node] = timer++;
bool multi = false;
for (int ptr = 0; ptr < graph[node].size(); ptr++) {
int i = graph[node][ptr];
if (i != parent || multi) {
if (visited[i]) low[node] = min(low[node], tin[i]);
else {
dfs(i, node);
low[node] = min(low[node], low[i]);
}
} else multi = true;
}
if (parent && tin[node] == low[node]) cout << node << ' ' << parent << '\n';
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n, m;
cin >> n >> m;
iota(cmp1 + 1, cmp1 + n + 1, 1);
iota(cmp2 + 1, cmp2 + n + 1, 1);
while (m--) {
int u, v;
cin >> u >> v;
if (find(u, cmp1) != find(v, cmp1)) {
onion(u, v, cmp1);
graph[u].push_back(v);
graph[v].push_back(u);
} else if (find(u, cmp2) != find(v, cmp2)) {
onion(u, v, cmp2);
graph[u].push_back(v);
graph[v].push_back(u);
}
}
for (int i = 1; i <= n; i++) if (!visited[i]) dfs(i);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
pipes.cpp: In function 'void dfs(int, int)':
pipes.cpp:23:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int ptr = 0; ptr < graph[node].size(); ptr++) {
| ~~~~^~~~~~~~~~~~~~~~~~~~
# | 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... |