結果

問題 No.1817 Reversed Edges
ユーザー publfl2publfl2
提出日時 2022-01-21 21:34:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 49,024 KB
実行使用メモリ 16,896 KB
最終ジャッジ日時 2024-05-04 12:07:32
合計ジャッジ時間 2,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,632 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 3 ms
5,504 KB
testcase_03 AC 3 ms
5,632 KB
testcase_04 AC 3 ms
5,504 KB
testcase_05 AC 3 ms
5,504 KB
testcase_06 AC 3 ms
5,632 KB
testcase_07 AC 46 ms
8,576 KB
testcase_08 AC 22 ms
7,040 KB
testcase_09 AC 43 ms
8,576 KB
testcase_10 AC 27 ms
7,040 KB
testcase_11 AC 30 ms
7,808 KB
testcase_12 AC 51 ms
9,088 KB
testcase_13 AC 51 ms
9,216 KB
testcase_14 AC 50 ms
9,216 KB
testcase_15 AC 49 ms
9,088 KB
testcase_16 AC 50 ms
9,088 KB
testcase_17 AC 51 ms
9,216 KB
testcase_18 AC 49 ms
9,216 KB
testcase_19 AC 50 ms
9,088 KB
testcase_20 AC 48 ms
9,096 KB
testcase_21 AC 50 ms
9,344 KB
testcase_22 AC 32 ms
9,212 KB
testcase_23 AC 31 ms
9,212 KB
testcase_24 AC 47 ms
16,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>

std::vector<int> V[100010];
int init(int k, int prev)
{
	int ans = 0;
	for(int i=0;i<V[k].size();i++)
	{
		if(V[k][i]==prev) continue;
		ans += init(V[k][i],k);
		if(V[k][i]<k) ans++;
	}
	return ans;
}

int ans[100010];
void func(int k, int prev, int val)
{
	ans[k] = val;
	for(int i=0;i<V[k].size();i++)
	{
		if(V[k][i]==prev) continue;
		if(V[k][i]<k) func(V[k][i],k,val-1);
		else func(V[k][i],k,val+1);
	}
}

int main()
{
	int a;
	scanf("%d",&a);
	for(int i=1;i<a;i++)
	{
		int b,c;
		scanf("%d%d",&b,&c);
		V[b].push_back(c);
		V[c].push_back(b);
	}
	
	int t = init(1,0);
	func(1,0,t);
	
	for(int i=1;i<=a;i++) printf("%d\n",ans[i]);
}
0