#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) {
lli ret = 0;
lli x = n - cmpsz[node];
for(auto c : cadj[node]) {
if(c == par) {
int sbt = n - subsz[node];
ret += 1ll * cmpsz[node] * sbt * (x - sbt);
continue;
}
int sbt = subsz[c];
ret += 1ll * cmpsz[node] * sbt * (x - sbt);
dfs(c, node);
}
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);
}
cout << ans << "\n";
}
signed main() {
fastio();
solve();
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
575 ms |
1048576 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
575 ms |
1048576 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1133 ms |
771952 KB |
Time limit exceeded |
2 |
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 |
Correct |
9 ms |
20824 KB |
Output is correct |
4 |
Correct |
9 ms |
20824 KB |
Output is correct |
5 |
Correct |
8 ms |
20824 KB |
Output is correct |
6 |
Correct |
8 ms |
20824 KB |
Output is correct |
7 |
Correct |
9 ms |
21080 KB |
Output is correct |
8 |
Correct |
8 ms |
20824 KB |
Output is correct |
9 |
Correct |
9 ms |
20824 KB |
Output is correct |
10 |
Incorrect |
8 ms |
20828 KB |
Output isn't correct |
11 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
77 ms |
29560 KB |
Output is correct |
2 |
Correct |
74 ms |
29520 KB |
Output is correct |
3 |
Correct |
71 ms |
29528 KB |
Output is correct |
4 |
Correct |
62 ms |
29628 KB |
Output is correct |
5 |
Correct |
72 ms |
29648 KB |
Output is correct |
6 |
Correct |
73 ms |
33108 KB |
Output is correct |
7 |
Correct |
72 ms |
32348 KB |
Output is correct |
8 |
Correct |
68 ms |
31572 KB |
Output is correct |
9 |
Correct |
65 ms |
30804 KB |
Output is correct |
10 |
Incorrect |
62 ms |
28224 KB |
Output isn't correct |
11 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
10 ms |
20828 KB |
Output is correct |
2 |
Correct |
9 ms |
20828 KB |
Output is correct |
3 |
Runtime error |
578 ms |
1048576 KB |
Execution killed with signal 9 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
67 ms |
29564 KB |
Output is correct |
2 |
Correct |
82 ms |
29436 KB |
Output is correct |
3 |
Runtime error |
621 ms |
1048576 KB |
Execution killed with signal 9 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
575 ms |
1048576 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
575 ms |
1048576 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |