# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
669393 |
2022-12-06T10:59:32 Z |
hamidh100 |
Pipes (CEOI15_pipes) |
C++11 |
|
1218 ms |
27792 KB |
/* In the name of God */
#include <iostream>
#include <iomanip>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <string>
#include <string.h>
#include <algorithm>
#include <bitset>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <list>
#include <map>
#include <numeric>
#include <limits>
#include <limits.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> PII;
typedef pair<ll, ll> PLL;
typedef map<int, int> MPII;
typedef vector<int> VI;
typedef vector<ll> VL;
#define PB push_back
#define POP pop_back
#define MP make_pair
#define all(a) (a).begin(), (a).end()
#define SORT(a) sort(all(a))
#define REVERSE(a) reverse(all(a))
#define sep ' '
#define endl '\n'
#define dbg(x) cerr << '[' << #x << ": " << x << "]\n"
#define dbg2(x, y) cerr << '[' << #x << ": " << x << ", " << #y << ": " << y << "]\n"
#define Yes cout << "Yes\n"
#define YES cout << "YES\n"
#define No cout << "No\n"
#define NO cout << "NO\n"
#define OK cout << "OK\n"
const ll INF = (ll)8e18 + 1386;
const ld eps = 0.000000000000001;
const int MOD = 1e9 + 7;
inline int mod_add(int a, int b){ int res = a + b; return (res >= MOD? res - MOD : res); }
inline int mod_neg(int a, int b){ int res = (abs(a - b) < MOD? a - b : (a - b) % MOD); return (res < 0? res + MOD : res); }
inline int mod_mlt(int a, int b){ return (1ll * a * b % MOD); }
inline string intToString(ll a){ char x[100]; sprintf(x, "%lld", a); string s = x; return s; }
inline ll stringToInt(string s){ ll res; char x[100]; strcpy(x, s.c_str()); sscanf(x, "%lld", &res); return res; }
inline void fileIO(string i, string o){ freopen(i.c_str(), "r", stdin); freopen(o.c_str(), "w", stdout); }
const int MAXN = 1e5 + 1;
int n, m, par[MAXN], par2[MAXN], ps[MAXN], parr[MAXN], root, h[MAXN];
VI N[MAXN];
bitset<MAXN> mark;
map<PII, int> cnt;
int getpar(int v, bool which = 1){
return ((which? par : par2)[v] == v ? v : (which? par : par2)[v] = getpar((which? par : par2)[v], which));
}
void dfs(int v, int height = 0){
mark[v] = 1;
h[v] = height++;
for (int u : N[v]){
if (!mark[u]){
parr[u] = v;
dfs(u, height);
}
else if (h[v] - h[u] > 1 || cnt[MP(min(u, v), max(u, v))] > 1){
ps[v]++, ps[u]--;
}
}
}
void dfs_ans(int v){
mark[v] = 1;
for (int u : N[v]){
if (!mark[u]){
dfs_ans(u);
ps[v] += ps[u];
}
}
if (v == root) return;
if (ps[v] == 0) cout << v << sep << parr[v] << endl;
}
void merge(int u, int v){
int p1 = getpar(u), p2 = getpar(v);
if (p1 == p2){
p1 = getpar(u, 0), p2 = getpar(v, 0);
if (p1 != p2){
cnt[MP(min(u, v), max(u, v))]++;
N[u].PB(v), N[v].PB(u);
par2[p1] = p2;
}
} else {
cnt[MP(min(u, v), max(u, v))]++;
N[u].PB(v), N[v].PB(u);
par[p1] = p2;
}
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
iota(par, par + MAXN, 0);
iota(par2, par2 + MAXN, 0);
cin >> n >> m;
for (int i = 0; i < m; i++){
int x, y;
cin >> x >> y;
merge(x, y);
}
for (int i = 1; i <= n; i++){
if (!mark[i]){
root = i;
parr[root] = root;
dfs(root);
}
}
mark.reset();
for (int i = 1; i <= n; i++){
if (!mark[i]){
root = i;
dfs_ans(root);
}
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
3412 KB |
Output is correct |
2 |
Incorrect |
2 ms |
3412 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
9 ms |
4436 KB |
Output is correct |
2 |
Correct |
8 ms |
4180 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
90 ms |
4296 KB |
Output is correct |
2 |
Incorrect |
89 ms |
4016 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
156 ms |
5748 KB |
Output is correct |
2 |
Incorrect |
171 ms |
5132 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
277 ms |
9164 KB |
Output is correct |
2 |
Correct |
229 ms |
8488 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
503 ms |
20556 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
753 ms |
23020 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
936 ms |
27792 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1117 ms |
27716 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1218 ms |
26504 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |