結果

問題 No.1103 Directed Length Sum
ユーザー 夜
提出日時 2020-11-28 09:46:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 897 ms / 3,000 ms
コード長 916 bytes
コンパイル時間 1,218 ms
コンパイル使用メモリ 104,544 KB
実行使用メモリ 58,840 KB
最終ジャッジ日時 2024-09-12 22:11:51
合計ジャッジ時間 10,374 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
26,616 KB
testcase_01 AC 9 ms
26,648 KB
testcase_02 AC 704 ms
58,840 KB
testcase_03 AC 503 ms
47,844 KB
testcase_04 AC 499 ms
37,436 KB
testcase_05 AC 897 ms
45,300 KB
testcase_06 AC 318 ms
33,720 KB
testcase_07 AC 73 ms
28,312 KB
testcase_08 AC 110 ms
29,188 KB
testcase_09 AC 48 ms
27,740 KB
testcase_10 AC 154 ms
30,184 KB
testcase_11 AC 564 ms
38,328 KB
testcase_12 AC 321 ms
33,760 KB
testcase_13 AC 161 ms
30,304 KB
testcase_14 AC 39 ms
27,532 KB
testcase_15 AC 250 ms
32,300 KB
testcase_16 AC 634 ms
39,732 KB
testcase_17 AC 657 ms
40,332 KB
testcase_18 AC 155 ms
30,244 KB
testcase_19 AC 578 ms
38,724 KB
testcase_20 AC 58 ms
27,988 KB
testcase_21 AC 104 ms
29,004 KB
testcase_22 AC 463 ms
36,512 KB
testcase_23 AC 268 ms
32,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
vector<vector<int>> vec(1000010);
bool bo[1000010] = { false };
int main() {
	long long n;
	cin >> n;
	for (int i = 0; i < n - 1; i++) {
		int a, b;
		cin >> a >> b;
		vec[a].emplace_back(b);
		bo[b] = true;
	}
	queue<pair<int, long long>> que;
	for (int i = 1; i <= n; i++) {
		if (!bo[i]) {
			que.push(make_pair(i, 0));
		}
	}
	long long ans = 0;
	while (!que.empty()) {
		pair<int, long long> p;
		p = que.front();
		ans += p.second * (p.second + 1) / 2;
		ans %= 1000000007;
		for (int i = 0; i < vec[p.first].size(); i++) {
			que.push(make_pair(vec[p.first][i], p.second + 1));
		}
		que.pop();
	}
	cout << ans << endl;
}
0