結果

問題 No.2427 Tree Distance Two
ユーザー achapiachapi
提出日時 2023-08-18 21:16:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 402 bytes
コンパイル時間 2,609 ms
コンパイル使用メモリ 208,508 KB
実行使用メモリ 42,240 KB
最終ジャッジ日時 2024-11-28 05:19:35
合計ジャッジ時間 28,056 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
40,136 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 392 ms
41,856 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 441 ms
42,240 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 227 ms
19,584 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 9 ms
5,248 KB
testcase_21 AC 11 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 10 ms
5,248 KB
testcase_25 AC 89 ms
7,552 KB
testcase_26 AC 242 ms
13,568 KB
testcase_27 AC 153 ms
10,624 KB
testcase_28 AC 374 ms
18,688 KB
testcase_29 AC 315 ms
16,896 KB
testcase_30 AC 224 ms
13,312 KB
testcase_31 AC 130 ms
9,728 KB
testcase_32 AC 213 ms
13,184 KB
testcase_33 AC 192 ms
12,032 KB
testcase_34 AC 54 ms
33,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int N;
	cin >> N;
	vector<vector<int>> G(N);
	for (int i = 0; i < N - 1; i++){
		int u, v;
		cin >> u >> v;
		u--;
		v--;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	for (int i = 0; i < N; i++){
		set<int> s;
		for (int v : G[i]){
			for (int v2 : G[v]){
				if (v2 != i){
					s.insert(v2);
				}
			}
		}
		cout << s.size() << '\n';
	}
}
0