結果

問題 No.2427 Tree Distance Two
ユーザー elpheelphe
提出日時 2024-11-14 14:47:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 896 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 24,288 KB
最終ジャッジ日時 2024-11-14 14:47:57
合計ジャッジ時間 6,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 173 ms
22,460 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 181 ms
22,224 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 138 ms
22,996 KB
testcase_08 AC 156 ms
24,288 KB
testcase_09 AC 141 ms
23,116 KB
testcase_10 AC 158 ms
23,536 KB
testcase_11 AC 146 ms
23,852 KB
testcase_12 AC 158 ms
22,776 KB
testcase_13 AC 170 ms
22,592 KB
testcase_14 AC 95 ms
21,928 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 4 ms
6,820 KB
testcase_21 AC 5 ms
6,816 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 4 ms
6,820 KB
testcase_25 AC 32 ms
8,192 KB
testcase_26 AC 93 ms
15,020 KB
testcase_27 AC 63 ms
11,720 KB
testcase_28 AC 167 ms
20,892 KB
testcase_29 AC 146 ms
18,744 KB
testcase_30 AC 87 ms
14,860 KB
testcase_31 AC 52 ms
10,752 KB
testcase_32 AC 90 ms
14,560 KB
testcase_33 AC 75 ms
13,312 KB
testcase_34 AC 21 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <vector>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	uint32_t N, i;
	cin >> N;
	vector<uint32_t> u(N - 1), v(N - 1);
	for (i = 0; i != N - 1; ++i) cin >> u[i] >> v[i];

	vector<vector<uint32_t>> edges_from(N, vector<uint32_t>());
	for (i = 0; i != N - 1; ++i)
		edges_from[u[i] - 1].push_back(v[i] - 1), edges_from[v[i] - 1].push_back(u[i] - 1);

	uint32_t count;
	for (i = 0; i != N; ++i)
	{
		count = 0;
		for (const auto edge : edges_from[i])
			count += edges_from[edge].size();
		cout << count - edges_from[i].size() << '\n';
	}

	return 0;
}
0