Submission #734341

#TimeUsernameProblemLanguageResultExecution timeMemory
734341cig32Duathlon (APIO18_duathlon)C++17
100 / 100
219 ms45224 KiB
#include "bits/stdc++.h" #define int long long using namespace std; const int MAXN = 4e5 + 10; vector<int> adj[MAXN]; vector<int> rst[MAXN]; // round-square tree int n, m, cur; int tin[MAXN], low[MAXN], vis[MAXN]; stack<int> stk; int nxt; int ans = 0; void dfs(int node, int prv) { vis[node] = 1; tin[node] = ++cur; low[node] = tin[node]; stk.push(node); for(int x: adj[node]) { if(x != prv) { if(!vis[x]) { dfs(x, node); low[node] = min(low[node], low[x]); if(low[x] >= tin[node]) { while(1) { int u = stk.top(); stk.pop(); rst[u].push_back(nxt); rst[nxt].push_back(u); if(u == x) break; } rst[node].push_back(nxt); rst[nxt].push_back(node); nxt++; } } else { low[node] = min(low[node], tin[x]); } } } } int w[MAXN]; int bruh; int calc(int node, int prv) { int ret = (node <= n); vector<int> vt; for(int x: rst[node]) { if(x != prv) { int v = calc(x, node); ret += v; vt.push_back(v); } } vt.push_back(bruh - ret); int con = (node <= n ? 2 * (bruh-1) : 0); int ps = 0; for(int x: vt) { con += ps * x * 2; ps += x; } ans += con * w[node]; return ret; } void count(int node, int prv) { vis[node] = 1; bruh += (node <= n); for(int x: rst[node]) if(x != prv) count(x, node); } int32_t main() { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> m; for(int i=1; i<=m; i++) { int u, v; cin >> u >> v; adj[u].push_back(v); adj[v].push_back(u); } nxt = n+1; for(int i=1; i<=n; i++) { if(!vis[i]) { dfs(i, -1); while(stk.size()) stk.pop(); } } m = nxt-1 - n; for(int i=1; i<=n; i++) w[i] = -1; for(int i=n+1; i<=n+m; i++) w[i] = rst[i].size(); for(int i=1; i<=n+m; i++) vis[i] = 0; for(int i=1; i<=n+m; i++) { if(!vis[i]) { bruh = 0; count(i, -1); calc(i, -1); } } cout << ans << '\n'; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...