//#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/stdc++.h>
using namespace std;
typedef long long llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
#define endl '\n'
llo n,m;
vector<llo> adj[100001];
llo vis[100001];
llo par[100001];
llo ind[100001];
vector<llo> ss;
set<llo> adj2[100001];
llo val[100001];
vector<llo> pre[100001];
llo par5[100001];
llo lev[100001];
void dfs(llo no,llo par2=-1,llo levv=0){
ss.pb(no);
vis[no]=1;
par5[no]=par2;
par[no]=no;
lev[no]=levv;
for(auto j:adj[no]){
if(j!=par2){
if(vis[j]==0){
dfs(j,no,levv+1);
}
else if(lev[j]<lev[no]){
vector<llo> cot;
llo cur=no;
while(cur!=j){
cot.pb(cur);
cur=par5[cur];
}
cot.pb(cur);
for(auto ii:cot){
par[ii]=j;
}
}
}
}
}
llo par3[100001];
llo ans=0;
void dfs2(llo no,llo par2=-1){
par3[no]=par2;
//val[no]=1;
//ss.pb(no);
// vis[no]=1;
llo su=0;
for(auto j:adj2[no]){
if(j!=par2){
dfs2(j,no);
su+=val[j];
val[no]+=val[j];
}
}
for(auto j:adj2[no]){
if(j!=par2){
//cout<<no<<":"<<j<<":"<<(val[j]*(su-val[j])*(val[no]-su))<<endl;
//ans+=(val[j]*(su-val[j])*(val[no]-su));
}
}
}
llo pa=-1;
llo co5=0;
llo vis2[100001];
void dfs3(llo no){
vis2[no]=1;
co5++;
for(auto j:adj[no]){
if(vis2[j]==0 and par[j]!=pa){
dfs3(j);
}
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>n>>m;
for(llo i=0;i<m;i++){
llo aa,bb;
cin>>aa>>bb;
aa--;
bb--;
adj[aa].pb(bb);
adj[bb].pb(aa);
}
for(llo i=0;i<n;i++){
if(vis[i]==0){
ss.clear();
//dfs2(i);
/* for(auto j:ss){
ans+=2*(val[j]-1)*(ss.size()-val[j]);
//cout<<j<<":";
}*/
//cout<<endl;
//continue;
dfs(i);
for(auto j:ss){
val[par[j]]++;
for(auto ii:adj[j]){
if(par[j]!=par[ii]){
adj2[par[j]].insert(par[ii]);
}
}
}
//continue;
for(auto j:ss){
pre[par[j]].pb(j);
}
dfs2(i);
/*for(auto j:ss){
cout<<j<<":"<<par[j]<<":"<<val[j]<<endl;
}*/
llo nn=ss.size();
for(auto j:ss){
if(par[j]==j){
llo aa=pre[j].size();
if(aa>=3){
ans+=((((aa*(aa-1)*(aa-2)))));
}
//ans+=2*(val[j]-aa)*aa*(nn-val[j]);
//continue;
llo co2=0;
//if(aa>=2){
for(auto ii:ss){
vis2[ii]=0;
}
vector<pair<llo,vector<llo>>> cal;
for(auto ii:pre[j]){
// pa=par[ii];
// co5=0;
// dfs3(ii);
//
//ans+=2*((co5-1)*(aa-1)*(aa-1));
// cout<<ii<<":"<<co5<<endl;
// if(ii!=j){
vector<llo> pp;
for(auto k:adj[ii]){
if(par[k]!=par[ii]){
if(k!=par5[ii]){
//co-=val[k];
//co2+=val[k];
pp.pb(val[par[k]]);
//cout<<ii<<":"<<k<<":"<<val[k]*(nn-aa-val[k])<<endl;
//ans+=val[k]*(nn-aa-val[k])*2;
}
else{
pp.pb(nn-val[par[ii]]);
}
}
}
cal.pb({ii,pp});
}
for(auto ii2:cal){
llo su=0;
for(auto jj:ii2.b){
su+=jj;
}
//cout<<ii2.a<<endl;
llo su9=0;
for(auto jj:ii2.b){
//cout<<jj<<"<";
ans+=2*(nn-su-aa)*jj*aa;
if(aa>=3){
ans+=jj*(aa-1)*(aa-2)*2;
}
ans+=(aa-1)*jj*2;
ans+=su9*jj*2;
su9+=jj;
}
// cout<<endl;
}
//}
}
}
}
}
cout<<ans<<endl;
// dfs(0);
return 0;
}
Compilation message
count_triplets.cpp: In function 'int main()':
count_triplets.cpp:136:10: warning: unused variable 'co2' [-Wunused-variable]
136 | llo co2=0;
| ^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
9676 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
9676 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
99 ms |
41332 KB |
Output is correct |
2 |
Correct |
110 ms |
41384 KB |
Output is correct |
3 |
Execution timed out |
1095 ms |
34416 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
9932 KB |
Output is correct |
2 |
Correct |
9 ms |
9932 KB |
Output is correct |
3 |
Correct |
10 ms |
9932 KB |
Output is correct |
4 |
Correct |
10 ms |
10060 KB |
Output is correct |
5 |
Correct |
12 ms |
9988 KB |
Output is correct |
6 |
Correct |
10 ms |
9932 KB |
Output is correct |
7 |
Correct |
10 ms |
10060 KB |
Output is correct |
8 |
Correct |
10 ms |
10012 KB |
Output is correct |
9 |
Correct |
10 ms |
9948 KB |
Output is correct |
10 |
Correct |
9 ms |
9988 KB |
Output is correct |
11 |
Correct |
9 ms |
9932 KB |
Output is correct |
12 |
Correct |
8 ms |
9932 KB |
Output is correct |
13 |
Correct |
8 ms |
9932 KB |
Output is correct |
14 |
Correct |
7 ms |
9860 KB |
Output is correct |
15 |
Correct |
7 ms |
9856 KB |
Output is correct |
16 |
Correct |
7 ms |
9804 KB |
Output is correct |
17 |
Correct |
11 ms |
9924 KB |
Output is correct |
18 |
Correct |
11 ms |
9932 KB |
Output is correct |
19 |
Correct |
10 ms |
10000 KB |
Output is correct |
20 |
Correct |
11 ms |
10060 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1089 ms |
33432 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
9932 KB |
Output is correct |
2 |
Correct |
10 ms |
9996 KB |
Output is correct |
3 |
Incorrect |
10 ms |
9864 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1091 ms |
33368 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
9676 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
9676 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |