結果

問題 No.1103 Directed Length Sum
ユーザー QCFiumQCFium
提出日時 2020-07-03 21:42:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 512 ms / 3,000 ms
コード長 579 bytes
コンパイル時間 1,594 ms
コンパイル使用メモリ 174,848 KB
実行使用メモリ 89,340 KB
最終ジャッジ日時 2024-09-16 23:47:09
合計ジャッジ時間 7,018 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 306 ms
89,340 KB
testcase_03 AC 194 ms
31,964 KB
testcase_04 AC 286 ms
25,768 KB
testcase_05 AC 512 ms
42,044 KB
testcase_06 AC 153 ms
17,908 KB
testcase_07 AC 30 ms
6,940 KB
testcase_08 AC 46 ms
8,704 KB
testcase_09 AC 19 ms
6,940 KB
testcase_10 AC 66 ms
10,704 KB
testcase_11 AC 272 ms
27,692 KB
testcase_12 AC 137 ms
18,116 KB
testcase_13 AC 72 ms
10,948 KB
testcase_14 AC 15 ms
6,944 KB
testcase_15 AC 109 ms
14,808 KB
testcase_16 AC 335 ms
30,696 KB
testcase_17 AC 360 ms
31,896 KB
testcase_18 AC 70 ms
10,616 KB
testcase_19 AC 308 ms
28,448 KB
testcase_20 AC 23 ms
6,940 KB
testcase_21 AC 42 ms
8,248 KB
testcase_22 AC 247 ms
23,812 KB
testcase_23 AC 126 ms
15,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

std::vector<std::vector<int> > hen;

int64_t res = 0;
void dfs(int i, int depth) {
	res += (int64_t) depth * (depth + 1) / 2;
	for (auto j : hen[i]) dfs(j, depth + 1);
}

int main() {
	int n = ri();
	hen.resize(n);
	std::vector<bool> used(n);
	for (int i = 1; i < n; i++) {
		int a = ri() - 1;
		int b = ri() - 1;
		hen[a].push_back(b);
		used[b] = true;
	}
	int root = std::find(used.begin(), used.end(), false) - used.begin();
	dfs(root, 0);
	printf("%d\n", (int) (res % 1000000007));
	
	return 0;
}
0