結果
問題 | No.1103 Directed Length Sum |
ユーザー | merom686 |
提出日時 | 2020-07-03 21:44:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 299 ms / 3,000 ms |
コード長 | 1,291 bytes |
コンパイル時間 | 966 ms |
コンパイル使用メモリ | 93,280 KB |
実行使用メモリ | 49,784 KB |
最終ジャッジ日時 | 2024-09-16 23:51:31 |
合計ジャッジ時間 | 4,999 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 224 ms
49,784 KB |
testcase_03 | AC | 159 ms
23,728 KB |
testcase_04 | AC | 155 ms
14,704 KB |
testcase_05 | AC | 299 ms
23,184 KB |
testcase_06 | AC | 96 ms
10,612 KB |
testcase_07 | AC | 21 ms
6,940 KB |
testcase_08 | AC | 33 ms
6,944 KB |
testcase_09 | AC | 14 ms
6,940 KB |
testcase_10 | AC | 48 ms
7,040 KB |
testcase_11 | AC | 175 ms
15,832 KB |
testcase_12 | AC | 99 ms
10,768 KB |
testcase_13 | AC | 49 ms
7,040 KB |
testcase_14 | AC | 11 ms
6,944 KB |
testcase_15 | AC | 76 ms
9,092 KB |
testcase_16 | AC | 194 ms
17,368 KB |
testcase_17 | AC | 211 ms
18,056 KB |
testcase_18 | AC | 47 ms
7,040 KB |
testcase_19 | AC | 190 ms
16,096 KB |
testcase_20 | AC | 16 ms
6,940 KB |
testcase_21 | AC | 29 ms
6,944 KB |
testcase_22 | AC | 148 ms
13,788 KB |
testcase_23 | AC | 84 ms
9,612 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; using ll = long long; constexpr int P = 1000000007; ll ans = 0; struct Graph { struct Vertex { int n; }; struct Edge { int i, n; }; Graph(int n, int m) : v(n, { -1 }), e(m), n(n), m(0) {} void add_edge(int i, int j) { e[m] = { j, v[i].n }; v[i].n = m; m++; } pair<ll, int> dfs(int i) { ll s = 0; int k = 0; for (int j = v[i].n; j >= 0; j = e[j].n) { Edge& o = e[j]; auto p = dfs(o.i); s += p.first; k += p.second; } s += k; ans += s; return { s, k + 1 }; } vector<Vertex> v; vector<Edge> e; int n, m; }; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; Graph g(n, (n - 1) * 2); vector<char> x(n, 0); for (int i = 0; i < n - 1; i++) { int a, b; cin >> a >> b; a--; b--; g.add_edge(a, b); x[b] = 1; } for (int i = 0; i < n; i++) { if (x[i] == 0) { g.dfs(i); cout << ans % P << endl; break; } } return 0; }