# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
668748 |
2022-12-04T21:10:12 Z |
AmirAli_H1 |
Pipes (CEOI15_pipes) |
C++17 |
|
989 ms |
15724 KB |
// In the name of Allah
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define all(x) (x).begin(),(x).end()
#define len(x) ((ll) (x).size())
#define F first
#define S second
#define pb push_back
#define sep ' '
#define endl '\n'
#define Mp make_pair
#define debug(x) cerr << #x << ": " << x << endl;
#define kill(x) cout << x << '\n', exit(0);
#define set_dec(x) cout << fixed << setprecision(x);
#define file_io(x,y) freopen(x, "r", stdin); freopen(y, "w", stdout);
int n, m;
const int maxn = 1e5 + 5;
int *p, *sz;
int p1[maxn], sz1[maxn];
int p2[maxn], sz2[maxn];
vector<int> adj[maxn];
bitset<maxn> mark;
int h[maxn], mn[maxn];
void dfs(int v, int p = -1) {
mark[v] = 1; mn[v] = h[v];
int cnt = 0;
for (int u : adj[v]) {
if (!mark[u]) {
h[u] = h[v] + 1;
dfs(u, v);
mn[v] = min(mn[v], mn[u]);
}
else {
if (u != p) mn[v] = min(mn[v], h[u]);
else cnt++;
}
}
if (cnt >= 2) mn[v] = min(mn[v], h[p]);
if (mn[v] >= h[v] && p != -1) {
cout << min(p, v) + 1 << sep << max(p, v) + 1 << endl;
}
}
int get(int a) {
return ((p[a] == a) ? a : p[a] = get(p[a]));
}
void merge(int a, int b) {
a = get(a); b = get(b);
if (a == b) return ;
if (sz[a] > sz[b]) swap(a, b);
p[a] = b; sz[b] += sz[a]; sz[a] = 0;
}
int main() {
ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin >> n >> m;
iota(p1, p1 + n, 0); fill(sz1, sz1 + n, 1);
iota(p2, p2 + n, 0); fill(sz2, sz2 + n, 1);
for (int i = 0; i < m; i++) {
int u, v;
cin >> u >> v; u--; v--;
bool flag = 0;
p = p1; sz = sz1;
if (!flag && get(u) != get(v)) {
flag = 1;
merge(u, v);
adj[u].pb(v); adj[v].pb(u);
}
p = p2; sz = sz2;
if (!flag && get(u) != get(v)) {
flag = 1;
merge(u, v);
adj[u].pb(v); adj[v].pb(u);
}
}
for (int i = 0; i < n; i++) {
if (!mark[i]) dfs(i);
}
for (int i = 0; i < n; i++) adj[i].clear();
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
2644 KB |
Output is correct |
2 |
Correct |
2 ms |
2644 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
3284 KB |
Output is correct |
2 |
Correct |
4 ms |
3084 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
85 ms |
3660 KB |
Output is correct |
2 |
Correct |
90 ms |
3400 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
155 ms |
4368 KB |
Output is correct |
2 |
Correct |
158 ms |
3836 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
240 ms |
6020 KB |
Output is correct |
2 |
Correct |
228 ms |
5676 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
311 ms |
11716 KB |
Output is correct |
2 |
Correct |
287 ms |
7676 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
524 ms |
13060 KB |
Output is correct |
2 |
Correct |
465 ms |
10076 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
663 ms |
15352 KB |
Output is correct |
2 |
Correct |
615 ms |
10044 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
829 ms |
15724 KB |
Output is correct |
2 |
Correct |
744 ms |
9796 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
989 ms |
14728 KB |
Output is correct |
2 |
Correct |
908 ms |
11716 KB |
Output is correct |