結果
問題 | No.1103 Directed Length Sum |
ユーザー | kurotemko |
提出日時 | 2020-07-26 21:10:23 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,285 bytes |
コンパイル時間 | 2,234 ms |
コンパイル使用メモリ | 199,048 KB |
最終ジャッジ日時 | 2025-01-12 06:19:29 |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | AC | 208 ms
39,520 KB |
testcase_04 | AC | 383 ms
30,216 KB |
testcase_05 | AC | 709 ms
49,752 KB |
testcase_06 | AC | 232 ms
20,756 KB |
testcase_07 | AC | 40 ms
7,680 KB |
testcase_08 | AC | 62 ms
9,840 KB |
testcase_09 | AC | 25 ms
6,820 KB |
testcase_10 | AC | 94 ms
12,236 KB |
testcase_11 | AC | 448 ms
32,680 KB |
testcase_12 | AC | 254 ms
21,108 KB |
testcase_13 | AC | 111 ms
12,500 KB |
testcase_14 | AC | 18 ms
6,816 KB |
testcase_15 | AC | 192 ms
17,340 KB |
testcase_16 | AC | 499 ms
36,268 KB |
testcase_17 | AC | 523 ms
37,556 KB |
testcase_18 | AC | 96 ms
12,052 KB |
testcase_19 | AC | 446 ms
33,404 KB |
testcase_20 | AC | 30 ms
6,816 KB |
testcase_21 | AC | 63 ms
9,344 KB |
testcase_22 | AC | 356 ms
27,972 KB |
testcase_23 | AC | 196 ms
18,180 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:44:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 44 | scanf("%d %d", &a, &b); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; const long long mod = 1000000007; vector<vector<int>> g; vector<int> depth; vector<int> child; void dfs1(int cur, int pre) { for(auto next : g[cur]) { if(next == pre) continue; depth[next] = depth[cur] + 1; dfs1(next, cur); } return; } void dfs2(int cur, int pre) { child[cur] = 1; for(auto next : g[cur]) { if(next == pre) continue; dfs2(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; // 根から探索 dfs1(root, -1); dfs2(root, -1); // 和の計算 long long ans = 0; for(int i = 0; i < n; ++i) { ans += (depth[i]*child[i]) % mod; ans %= mod; } cout << ans << endl; return 0; }