#include <bits/stdc++.h>
#define int long long int
#define lli int
#define ld long double
#define pb push_back
#define MP make_pair
#define REP(i, n) for(int i = 0; (i) < (n); (i)++)
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
using namespace std;
void fastio() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
}
const int N = 2e5 + 5;
const int INF = 1e9 + 500;
int n, m;
vector<vector<array<int, 2> > > adj(N, vector<array<int, 2> >());
int tim = 0;
vector<int> tin(N, -1), low(N, 0);
vector<array<int, 2> > edg(N);
vector<bool> isBr(N, 0);
vector<int> comp(N, -1), cmpsz(N, 0);
vector<vector<int> > cadj(N, vector<int>());
vector<int> subsz(N, 0);
vector<int> rt;
lli ans = 0;
void find_bridge(int node, int par) {
tin[node] = low[node] = tim++;
for(auto c : adj[node]) {
if(c[0] == par) {
continue;
}
if(tin[c[0]] != -1) {
low[node] = min(low[node], tin[c[0]]);
}
else {
find_bridge(c[0], node);
low[node] = min(low[node], low[c[0]]);
if(low[c[0]] > tin[node]) {
//bridge
isBr[c[1]] = 1;
}
}
}
}
void get_comp(int node, int par, int cm) {
comp[node] = cm;
cmpsz[cm]++;
for(auto c : adj[node]) {
if(c[0] == par || isBr[c[1]]) continue;
get_comp(c[0], node, cm);
}
}
void prec(int node, int par) {
subsz[node] = cmpsz[node];
for(auto c : cadj[node]) {
if(c == par) continue;
prec(c, node);
subsz[node] += subsz[c];
}
}
void dfs(int node, int par, int root) {
lli ret = 0;
lli x = subsz[root] - cmpsz[node];
for(auto c : cadj[node]) {
if(c == par) {
int sbt = subsz[root] - subsz[node];
ret += 1ll * cmpsz[node] * sbt * (x - sbt);
continue;
}
int sbt = subsz[c];
ret += 1ll * cmpsz[node] * sbt * (x - sbt);
dfs(c, node, root);
}
ans += ret;
}
void solve() {
cin >> n >> m;
REP(i, m) {
int u, v;
cin >> u >> v;
edg[i] = {u, v};
adj[u].pb({v, i});
adj[v].pb({u, i});
}
for(int i = 1; i <= n; i++) {
if(tin[i] != -1) continue;
rt.pb(i);
find_bridge(1, 0);
}
int cur = 1;
for(int i = 1; i <= n; i++) {
if(comp[i] == -1) {
get_comp(i, 0, cur++);
}
// cout << "i:" << i << " comp:" << comp[i] << "\n";
}
for(int i = 0; i < m; i++) {
if(isBr[i]) {
// cout << edg[i][0] << " " << edg[i][1] << "\n";
cadj[comp[edg[i][0]]].pb(edg[i][1]);
cadj[comp[edg[i][1]]].pb(edg[i][0]);
}
}
for(auto c : rt) {
prec(comp[c], 0);
}
for(int i = 1; i < cur; i++) {
ans += 1ll * cmpsz[i] * (cmpsz[i] - 1) * (cmpsz[i] - 2);
}
for(int c : rt) {
dfs(comp[c], 0, comp[c]);
}
cout << ans << "\n";
}
signed main() {
fastio();
solve();
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
726 ms |
1048576 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
726 ms |
1048576 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1070 ms |
741140 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
9 ms |
20828 KB |
Output is correct |
2 |
Correct |
10 ms |
20828 KB |
Output is correct |
3 |
Correct |
9 ms |
20828 KB |
Output is correct |
4 |
Correct |
7 ms |
20824 KB |
Output is correct |
5 |
Correct |
9 ms |
20892 KB |
Output is correct |
6 |
Correct |
7 ms |
20828 KB |
Output is correct |
7 |
Correct |
9 ms |
20828 KB |
Output is correct |
8 |
Correct |
9 ms |
20828 KB |
Output is correct |
9 |
Correct |
9 ms |
20828 KB |
Output is correct |
10 |
Incorrect |
9 ms |
20828 KB |
Output isn't correct |
11 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
62 ms |
29524 KB |
Output is correct |
2 |
Correct |
60 ms |
29556 KB |
Output is correct |
3 |
Correct |
60 ms |
29524 KB |
Output is correct |
4 |
Correct |
60 ms |
29580 KB |
Output is correct |
5 |
Correct |
61 ms |
29572 KB |
Output is correct |
6 |
Correct |
72 ms |
33804 KB |
Output is correct |
7 |
Correct |
93 ms |
32980 KB |
Output is correct |
8 |
Correct |
70 ms |
32080 KB |
Output is correct |
9 |
Correct |
67 ms |
31108 KB |
Output is correct |
10 |
Incorrect |
50 ms |
28372 KB |
Output isn't correct |
11 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
20828 KB |
Output is correct |
2 |
Correct |
8 ms |
20828 KB |
Output is correct |
3 |
Runtime error |
580 ms |
1048576 KB |
Execution killed with signal 9 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
59 ms |
29528 KB |
Output is correct |
2 |
Correct |
68 ms |
29524 KB |
Output is correct |
3 |
Runtime error |
660 ms |
1048576 KB |
Execution killed with signal 9 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
726 ms |
1048576 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
726 ms |
1048576 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |