# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
710271 | 2023-03-15T06:27:36 Z | lam | 철인 이종 경기 (APIO18_duathlon) | C++14 | 1000 ms | 1048576 KB |
#include <bits/stdc++.h> #define int long long using namespace std; const int maxn = 1e5 + 10; int n,m; vector <int> adj[maxn]; int dp[maxn],dp2[maxn],s[maxn]; bool dau[maxn]; vector <int> root; void dfs(int x, int p) { dau[x] = 1; dp[x] = 0; for (int i:adj[x]) if (i!=p) { dfs(i,x); dp[x] += dp[i]+1; } } void dfs2(int x, int p, int val) { dp2[x] = val; val++; vector <int> pre,suf; for (int i:adj[x]) if (i!=p) { pre.push_back(dp[i]+1); suf.push_back(dp[i]+1); } for (int i=1; i<pre.size(); i++) pre[i]+=pre[i-1]; for (int i=suf.size()-2; i>=0; i--) suf[i]+=suf[i+1]; int cnt=0; for (int i:adj[x]) if (i!=p) { int val2 = val; if (cnt>0) val2 += pre[cnt-1]; if (cnt<(int)suf.size()-1) val2+=suf[cnt+1]; cnt++; dfs2(i,x,val2); } } signed main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); 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); } for (int i=1; i<=n; i++) if (!dau[i]) dfs(i,i), root.push_back(i); for (int i:root) dfs2(i,i,0); int ans=0; for (int i=1; i<=n; i++) { ans += 2*dp[i]*dp2[i]; } cout<<ans<<'\n'; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 475 ms | 1048576 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 475 ms | 1048576 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1065 ms | 384880 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 2644 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 62 ms | 8248 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 2644 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 86 ms | 8180 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 475 ms | 1048576 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 475 ms | 1048576 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |