結果

問題 No.2427 Tree Distance Two
ユーザー cho435cho435
提出日時 2023-08-19 00:59:51
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 204,400 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-11-28 13:15:26
合計ジャッジ時間 9,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 385 ms
21,108 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 380 ms
21,188 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 315 ms
21,984 KB
testcase_08 AC 342 ms
23,040 KB
testcase_09 AC 321 ms
22,016 KB
testcase_10 AC 353 ms
22,360 KB
testcase_11 AC 332 ms
22,656 KB
testcase_12 AC 362 ms
21,708 KB
testcase_13 AC 361 ms
21,396 KB
testcase_14 AC 241 ms
20,736 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 8 ms
5,248 KB
testcase_21 AC 9 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 8 ms
5,248 KB
testcase_25 AC 75 ms
7,936 KB
testcase_26 AC 214 ms
14,324 KB
testcase_27 AC 145 ms
11,264 KB
testcase_28 AC 343 ms
19,764 KB
testcase_29 AC 300 ms
17,908 KB
testcase_30 AC 210 ms
13,952 KB
testcase_31 AC 125 ms
10,112 KB
testcase_32 AC 206 ms
13,824 KB
testcase_33 AC 181 ms
12,672 KB
testcase_34 AC 48 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)

int main(){
	int n;
	cin>>n;
	vector<int> vm(n,0);
	vector<vector<int>> g(n);
	rep(i,n-1){
		int u,v;
		cin>>u>>v;
		u--; v--;
		vm.at(u)++;
		vm.at(v)++;
		g.at(u).push_back(v);
		g.at(v).push_back(u);
	}
	rep(i,n){
		ll sm=0;
		for(int j:g.at(i)) sm+=vm.at(j);
		sm-=vm.at(i);
		cout<<sm<<"\n";
	}
}
0