#include<bits/stdc++.h>
using namespace std;
const int N = 2e5;
typedef long long ll;
ll ans = 0;
int n,m;
struct DSU{
int p,sz;
set <int> boys;
vector <int> comp;
}dsu[N];
set <int> edges[N];
multiset <int> compedges[N];
int leader(int x){
if(x == dsu[x].p)return x;
return dsu[x].p = leader(dsu[x].p);
}
bool checkedge(int x,int y){
int compx = leader(x);
int compy = leader(y);
if(compx == compy)return 1;
if(dsu[compy].boys.find(x) != dsu[compy].boys.end())return 1;
return 0;
}
bool check(int x,int y){
if(x == y)return 1;
for(auto i:dsu[x].comp){
if(edges[i].find(y) != edges[i].end()){
return 1;
}
}
return 0;
}
void connect(int x,int y){
x = leader(x);
y = leader(y);
if(x == y)return;
if(dsu[x].sz + dsu[x].boys.size() > dsu[y].sz + dsu[y].boys.size())swap(x,y);
///y connected to x
auto it = dsu[x].boys.begin();
while(it != dsu[x].boys.end()){
if(leader(*it) == y){
ans-=dsu[x].sz;
it = dsu[x].boys.erase(it);
edges[*it].erase(x);
compedges[y].erase(compedges[y].find(x));
}else{
it++;
}
}
///x connected to y
for(auto i:dsu[x].comp){
auto it = dsu[y].boys.find(i);
if(it != dsu[y].boys.end()){
ans-=dsu[y].sz;
dsu[y].boys.erase(it);
edges[*it].erase(y);
compedges[x].erase(compedges[x].find(y));
}
dsu[y].comp.push_back(i);
}
ans+=1ll*dsu[x].boys.size()*dsu[y].sz;
ans+=1ll*dsu[y].boys.size()*dsu[x].sz;
///x and y connected to random node
for(auto i:dsu[x].boys){
assert(leader(i) != y);
if(dsu[y].boys.find(i) != dsu[y].boys.end()){
ans-=dsu[x].sz;
ans-=dsu[y].sz;
}
dsu[y].boys.insert(i);
edges[i].erase(x);
compedges[leader(i)].erase(compedges[leader(i)].find(leader(x)));
edges[i].insert(y);
compedges[leader(i)].insert(leader(y));
}
ans+=2ll*dsu[x].sz*dsu[y].sz;
dsu[x].comp.clear();
dsu[x].boys.clear();
dsu[x].p = y;
dsu[y].sz+=dsu[x].sz;
///check for new connections
for(auto i:dsu[y].boys){
if(check(leader(i),y) && check(y,leader(i))){
connect(leader(i),y);
break;
}
}
}
void addedge(int x,int y){
int compx = leader(x);
int compy = leader(y);
if(checkedge(x,y))return;
if(check(compy,compx)){
connect(x,y);
}else{
dsu[compy].boys.insert(x);
edges[x].insert(compy);
compedges[compx].insert(compy);
ans+=dsu[compy].sz;
}
}
void dbg(){
for(int i = 0;i < n;i++){
cout<<"dsuinvestigate:"<<i<<'\n';
cout<<dsu[i].p<<' '<<dsu[i].sz<<'\n';
for(auto j:dsu[i].boys)cout<<j<<' ';cout<<'\n';
for(auto j:dsu[i].comp)cout<<j<<' ';cout<<'\n';
}
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cin>>n>>m;
for(int i = 0;i < n;i++){
dsu[i] = {i,1};
dsu[i].comp.push_back(i);
}
for(int i = 0;i < m;i++){
int u,w;
cin>>u>>w;
u--;w--;
addedge(u,w);
//dbg();
cout<<ans<<'\n';
}
return 0;
}
Compilation message
joitter2.cpp: In function 'void dbg()':
joitter2.cpp:107:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
107 | for(auto j:dsu[i].boys)cout<<j<<' ';cout<<'\n';
| ^~~
joitter2.cpp:107:45: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
107 | for(auto j:dsu[i].boys)cout<<j<<' ';cout<<'\n';
| ^~~~
joitter2.cpp:108:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
108 | for(auto j:dsu[i].comp)cout<<j<<' ';cout<<'\n';
| ^~~
joitter2.cpp:108:45: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
108 | for(auto j:dsu[i].comp)cout<<j<<' ';cout<<'\n';
| ^~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5043 ms |
34652 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5043 ms |
34652 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
5043 ms |
34652 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |