結果
問題 | No.1103 Directed Length Sum |
ユーザー | kurotemko |
提出日時 | 2020-07-26 21:21:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 982 ms / 3,000 ms |
コード長 | 1,146 bytes |
コンパイル時間 | 2,124 ms |
コンパイル使用メモリ | 208,004 KB |
実行使用メモリ | 151,808 KB |
最終ジャッジ日時 | 2024-06-28 19:28:00 |
合計ジャッジ時間 | 11,398 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 422 ms
151,808 KB |
testcase_03 | AC | 290 ms
81,640 KB |
testcase_04 | AC | 541 ms
46,336 KB |
testcase_05 | AC | 982 ms
77,824 KB |
testcase_06 | AC | 338 ms
31,360 KB |
testcase_07 | AC | 44 ms
10,112 KB |
testcase_08 | AC | 80 ms
13,824 KB |
testcase_09 | AC | 25 ms
7,424 KB |
testcase_10 | AC | 118 ms
17,408 KB |
testcase_11 | AC | 592 ms
50,304 KB |
testcase_12 | AC | 319 ms
31,616 KB |
testcase_13 | AC | 136 ms
17,792 KB |
testcase_14 | AC | 20 ms
6,528 KB |
testcase_15 | AC | 234 ms
25,216 KB |
testcase_16 | AC | 658 ms
56,320 KB |
testcase_17 | AC | 697 ms
58,368 KB |
testcase_18 | AC | 115 ms
17,408 KB |
testcase_19 | AC | 619 ms
51,456 KB |
testcase_20 | AC | 35 ms
8,576 KB |
testcase_21 | AC | 80 ms
12,672 KB |
testcase_22 | AC | 472 ms
42,624 KB |
testcase_23 | AC | 232 ms
27,008 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long mod = 1000000007; vector<vector<long long>> g; vector<long long> depth; vector<long long> child; void dfs(int cur, int pre) { child[cur] = 1; for(auto next : g[cur]) { if(next == pre) continue; depth[next] = depth[cur] + 1; dfs(next, cur); child[cur] += child[next]; } return; } int main() { int n; cin >> n; // nの長さを確保 g.resize(n); depth.resize(n); child.resize(n); // 根を探す用の配列 vector<bool> s_root(n, true); // グラフ作成 for(int i = 0; i < n-1; ++i) { int a, b; scanf("%d %d", &a, &b); a--; b--; g[a].emplace_back(b); g[b].emplace_back(a); s_root[b] = false; } // 根を探す int root = -1; for(int i = 0; i < n; ++i) if(s_root[i] == true) root = i; // 根から探索 dfs(root, -1); // 和の計算 long long ans = 0; for(int i = 0; i < n; ++i) { ans += (depth[i]%mod*child[i]%mod) % mod; ans %= mod; } cout << ans << endl; return 0; }