# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
669554 |
2022-12-06T17:40:02 Z |
BlackC |
Pipes (CEOI15_pipes) |
C++17 |
|
884 ms |
17368 KB |
//
// main.cpp
// C
//
// Created by Sajad Zare on 4/23/22.
//
#include <iostream>
#include <math.h>
#include <string>
#include <string.h>
#include <vector>
#include <cstring>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <deque>
#include <utility>
#include <cmath>
#include <algorithm>
#include <tuple>
#include <numeric>
#include <iomanip>
using namespace std;
const int maxn=1e5+2;
int parent[maxn];
int parent2[maxn];
int sz[maxn];
int sz2[maxn];
int seen[maxn];
int st[maxn];
int parent3[maxn];
int lowest[maxn];
int tmm=0;
vector<int> N[maxn];
vector<pair<int, int>>t1;
vector<pair<int, int>>t2;
int x,y;
int get_root(int v){
if (parent[v]!=v){
parent[v]=get_root(parent[v]);
}
return parent[v];
}
int get_root2(int v){
if (parent2[v]!=v){
parent2[v]=get_root(parent2[v]);
}
return parent2[v];
}
bool Union(int u,int v){
u=get_root(u);
v=get_root(v);
if (u==v){
return 1;
}
if (sz[v]<sz[u]){
parent[v]=u;
sz[u]+=sz[v];
}
else{
parent[u]=v;
sz[v]+=sz[u];
}
return 0;
}
bool Union2(int u,int v){
x=u;
y=v;
u=get_root2(u);
v=get_root2(v);
if (u==v){
return 0;
}
t2.push_back({x,y});
if (sz2[v]<sz2[u]){
parent2[v]=u;
sz2[u]+=sz2[v];
}
else{
parent2[u]=v;
sz2[v]+=sz2[u];
}
return 1;
}
void dfs(int node){
seen[node]=1;
tmm+=1;
st[node]=tmm;
lowest[node]=tmm;
//stft.push_back(node);
for (int n: N[node]){
if (seen[n]!=1){
parent3[n]=node;
dfs(n);
lowest[node]=min(lowest[node], lowest[n]);
if (lowest[n]>st[node]){
cout << node << ' ' << n << "\n";
}
}
else if (n!=parent3[node]){
lowest[node]=min(lowest[node],st[n]);
}
}
//ft[node]=t;
//stft.push_back(node);
}
//const int M = 1000000007;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n,m;
cin >> n >> m;
for (int i=1;i<n+1;i++){
parent[i]=i;
sz[i]=1;
}
for (int i=1;i<n+1;i++){
parent2[i]=i;
sz2[i]=1;
}
int u,v;
for (int i=0;i<m;i++){
cin >> u >> v;
if (Union(u, v)){
Union2(u, v);
}
else{
t1.push_back({u,v});
}
}
int f,ff;
//int startnode=t1[0].first;
for (int i=0;i<t1.size();i++){
f=t1[i].first;
ff=t1[i].second;
N[f].push_back(ff);
N[ff].push_back(f);
}
for (int i=0;i<t2.size();i++){
f=t2[i].first;
ff=t2[i].second;
N[f].push_back(ff);
N[ff].push_back(f);
}
//cout << startnode << endl;
for (int i=1;i<n+1;i++){
if (seen[i]!=1){
dfs(i);
}
}
return 0;
}
Compilation message
pipes.cpp: In function 'int main()':
pipes.cpp:136:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
136 | for (int i=0;i<t1.size();i++){
| ~^~~~~~~~~~
pipes.cpp:142:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
142 | for (int i=0;i<t2.size();i++){
| ~^~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2644 KB |
Output is correct |
2 |
Incorrect |
1 ms |
2644 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
3284 KB |
Output is correct |
2 |
Incorrect |
6 ms |
3032 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
88 ms |
3212 KB |
Output is correct |
2 |
Incorrect |
80 ms |
2952 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
137 ms |
4024 KB |
Output is correct |
2 |
Incorrect |
160 ms |
3636 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
240 ms |
6124 KB |
Output is correct |
2 |
Correct |
185 ms |
5852 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
301 ms |
13144 KB |
Output is correct |
2 |
Incorrect |
265 ms |
9544 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
445 ms |
14560 KB |
Output is correct |
2 |
Incorrect |
452 ms |
11336 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
637 ms |
17368 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
743 ms |
17300 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
884 ms |
16640 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |