結果
問題 | No.1103 Directed Length Sum |
ユーザー | leaf_1415 |
提出日時 | 2020-07-03 21:47:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 454 ms / 3,000 ms |
コード長 | 1,150 bytes |
コンパイル時間 | 2,019 ms |
コンパイル使用メモリ | 80,720 KB |
実行使用メモリ | 121,460 KB |
最終ジャッジ日時 | 2024-09-17 00:04:01 |
合計ジャッジ時間 | 5,617 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
26,752 KB |
testcase_01 | AC | 8 ms
26,752 KB |
testcase_02 | AC | 291 ms
121,460 KB |
testcase_03 | AC | 159 ms
35,444 KB |
testcase_04 | AC | 215 ms
37,888 KB |
testcase_05 | AC | 454 ms
45,824 KB |
testcase_06 | AC | 136 ms
34,036 KB |
testcase_07 | AC | 33 ms
28,544 KB |
testcase_08 | AC | 46 ms
29,312 KB |
testcase_09 | AC | 22 ms
27,904 KB |
testcase_10 | AC | 64 ms
30,464 KB |
testcase_11 | AC | 251 ms
38,784 KB |
testcase_12 | AC | 136 ms
34,044 KB |
testcase_13 | AC | 66 ms
30,592 KB |
testcase_14 | AC | 21 ms
27,648 KB |
testcase_15 | AC | 102 ms
32,296 KB |
testcase_16 | AC | 283 ms
40,320 KB |
testcase_17 | AC | 306 ms
40,960 KB |
testcase_18 | AC | 66 ms
30,336 KB |
testcase_19 | AC | 260 ms
39,040 KB |
testcase_20 | AC | 32 ms
28,160 KB |
testcase_21 | AC | 45 ms
29,056 KB |
testcase_22 | AC | 193 ms
36,864 KB |
testcase_23 | AC | 111 ms
32,688 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:62:12: warning: ‘root’ may be used uninitialized in this function [-Wmaybe-uninitialized] 62 | dfs(root, 0); | ~~~^~~~~~~~~
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #define llint long long #define inf 1e18 #define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++) #define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) #define mod 1000000007 using namespace std; typedef pair<llint, llint> P; llint n; vector<llint> G[1000005]; bool used[1000005]; llint ans; llint dfs(int v, llint d) { llint ret = 1; for(int i = 0; i < G[v].size(); i++){ ret += dfs(G[v][i], d+1); } ans += ret * d % mod, ans %= mod; return ret; } int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n; llint u, v; for(int i = 1; i <= n-1; i++){ cin >> u >> v; G[u].push_back(v); used[v] = true; } llint root; for(int i = 1; i <= n; i++){ if(!used[i]) root = i; } dfs(root, 0); cout << ans << endl; return 0; }