結果
問題 | No.1103 Directed Length Sum |
ユーザー | hedwig100 |
提出日時 | 2020-07-03 22:45:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 994 bytes |
コンパイル時間 | 1,801 ms |
コンパイル使用メモリ | 173,340 KB |
実行使用メモリ | 112,756 KB |
最終ジャッジ日時 | 2024-09-17 04:26:44 |
合計ジャッジ時間 | 12,419 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 497 ms
39,140 KB |
testcase_04 | AC | 595 ms
29,912 KB |
testcase_05 | AC | 1,155 ms
49,452 KB |
testcase_06 | AC | 374 ms
20,536 KB |
testcase_07 | AC | 75 ms
7,424 KB |
testcase_08 | AC | 123 ms
9,728 KB |
testcase_09 | AC | 46 ms
6,940 KB |
testcase_10 | AC | 177 ms
11,948 KB |
testcase_11 | AC | 662 ms
32,292 KB |
testcase_12 | AC | 384 ms
20,704 KB |
testcase_13 | AC | 173 ms
12,268 KB |
testcase_14 | AC | 33 ms
6,944 KB |
testcase_15 | AC | 289 ms
16,936 KB |
testcase_16 | AC | 755 ms
35,892 KB |
testcase_17 | AC | 792 ms
37,352 KB |
testcase_18 | AC | 174 ms
11,984 KB |
testcase_19 | AC | 697 ms
32,872 KB |
testcase_20 | AC | 55 ms
6,940 KB |
testcase_21 | AC | 106 ms
8,948 KB |
testcase_22 | AC | 556 ms
27,400 KB |
testcase_23 | AC | 320 ms
17,680 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:48:14: warning: 'root' may be used uninitialized [-Wmaybe-uninitialized] 48 | dist[root] = 0; | ^ main.cpp:41:9: note: 'root' was declared here 41 | int root; | ^~~~
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) using namespace std; using ll = long long ; using P = pair<int,int> ; using pll = pair<long long,long long>; constexpr int INF = 1e9; constexpr long long LINF = 1e17; constexpr int MOD = 1000000007; constexpr double PI = 3.14159265358979323846; int N; vector<vector<int>> G; ll ans = 0; vector<int> dist(N); int dfs(int v) { int cnt = 1; for (int e:G[v]) { dist[e] = dist[v] + 1; cnt += dfs(e); } ans += cnt*dist[v]; ans %= MOD; return cnt; } int main(){ cin >> N; G.resize(N); dist.resize(N); fill(dist.begin(),dist.end(),-1); vector<int> deg(N,0); rep(i,N - 1) { int a,b; cin >> a >> b; --a; --b; G[a].push_back(b); deg[b] ++; } int root; rep(i,N) { if (deg[i] == 0) { root = i; break; } } dist[root] = 0; dfs(root); cout << ans << endl; return 0; }