結果

問題 No.1103 Directed Length Sum
ユーザー Y17Y17
提出日時 2020-07-03 22:19:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 721 bytes
コンパイル時間 1,566 ms
コンパイル使用メモリ 171,536 KB
実行使用メモリ 98,904 KB
最終ジャッジ日時 2024-09-17 03:10:30
合計ジャッジ時間 11,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
34,648 KB
testcase_01 AC 13 ms
34,648 KB
testcase_02 WA -
testcase_03 AC 478 ms
42,916 KB
testcase_04 AC 556 ms
45,148 KB
testcase_05 AC 982 ms
52,864 KB
testcase_06 AC 353 ms
41,556 KB
testcase_07 AC 81 ms
36,352 KB
testcase_08 AC 125 ms
37,332 KB
testcase_09 AC 53 ms
35,804 KB
testcase_10 AC 169 ms
38,100 KB
testcase_11 AC 603 ms
46,168 KB
testcase_12 AC 349 ms
41,600 KB
testcase_13 AC 179 ms
38,144 KB
testcase_14 AC 43 ms
35,456 KB
testcase_15 AC 277 ms
40,064 KB
testcase_16 AC 689 ms
47,580 KB
testcase_17 AC 714 ms
48,128 KB
testcase_18 AC 172 ms
38,104 KB
testcase_19 AC 614 ms
46,424 KB
testcase_20 AC 63 ms
35,928 KB
testcase_21 AC 112 ms
36,956 KB
testcase_22 AC 497 ms
44,288 KB
testcase_23 AC 295 ms
40,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

#define int long long

vector<int> tree[1000010];

int rtree[1000010]; 

int dfs(int i, int j){
	int ans = (j*(j+1))/2;
	for(auto e : tree[i]){
		ans += dfs(e, j+1);
	}
	return ans;
}

signed main(){
	int n;
	cin >> n;

	int a, b;
	memset(rtree, -1, sizeof(rtree));
	for(int i = 0;i < n-1;i++){
		cin >> a >> b;
		a--; b--;
		tree[a].push_back(b);
		rtree[b] = a;
	}

	int root = 0;
	while(rtree[root] != -1) root = rtree[root];

	cout << dfs(root, 0) << endl;

	return 0;
}
0