結果

問題 No.1103 Directed Length Sum
ユーザー 夜
提出日時 2020-11-28 09:45:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 895 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 102,912 KB
実行使用メモリ 58,912 KB
最終ジャッジ日時 2024-09-12 22:11:40
合計ジャッジ時間 12,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
26,708 KB
testcase_01 AC 10 ms
26,628 KB
testcase_02 WA -
testcase_03 AC 500 ms
47,912 KB
testcase_04 AC 502 ms
37,368 KB
testcase_05 AC 913 ms
45,184 KB
testcase_06 AC 321 ms
33,720 KB
testcase_07 AC 74 ms
28,352 KB
testcase_08 AC 113 ms
29,276 KB
testcase_09 AC 49 ms
27,772 KB
testcase_10 AC 156 ms
30,212 KB
testcase_11 AC 555 ms
38,344 KB
testcase_12 AC 314 ms
33,700 KB
testcase_13 AC 158 ms
30,280 KB
testcase_14 AC 39 ms
27,456 KB
testcase_15 AC 244 ms
32,300 KB
testcase_16 AC 624 ms
39,804 KB
testcase_17 AC 647 ms
40,264 KB
testcase_18 AC 151 ms
30,144 KB
testcase_19 AC 561 ms
38,664 KB
testcase_20 AC 58 ms
27,892 KB
testcase_21 AC 100 ms
29,104 KB
testcase_22 AC 451 ms
36,488 KB
testcase_23 AC 262 ms
32,524 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;
		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