結果

問題 No.1817 Reversed Edges
ユーザー ks2mks2m
提出日時 2022-01-21 22:43:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 724 ms / 2,000 ms
コード長 1,319 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 78,828 KB
実行使用メモリ 71,308 KB
最終ジャッジ日時 2024-11-26 01:49:02
合計ジャッジ時間 13,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,268 KB
testcase_01 AC 45 ms
37,000 KB
testcase_02 AC 45 ms
36,756 KB
testcase_03 AC 45 ms
36,656 KB
testcase_04 AC 47 ms
37,104 KB
testcase_05 AC 50 ms
36,928 KB
testcase_06 AC 48 ms
37,088 KB
testcase_07 AC 506 ms
59,988 KB
testcase_08 AC 309 ms
51,156 KB
testcase_09 AC 554 ms
58,580 KB
testcase_10 AC 345 ms
52,332 KB
testcase_11 AC 426 ms
54,152 KB
testcase_12 AC 724 ms
63,116 KB
testcase_13 AC 607 ms
62,100 KB
testcase_14 AC 670 ms
63,888 KB
testcase_15 AC 621 ms
62,232 KB
testcase_16 AC 602 ms
62,292 KB
testcase_17 AC 683 ms
63,712 KB
testcase_18 AC 653 ms
64,896 KB
testcase_19 AC 596 ms
61,988 KB
testcase_20 AC 614 ms
61,980 KB
testcase_21 AC 616 ms
62,340 KB
testcase_22 AC 442 ms
60,912 KB
testcase_23 AC 469 ms
61,876 KB
testcase_24 AC 452 ms
71,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;

public class Main {
	static int n;
	static List<List<Integer>> list;
	static int[] ans;

	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		n = Integer.parseInt(sa[0]);
		list = new ArrayList<>(n);
		for (int i = 0; i < n; i++) {
			list.add(new ArrayList<>());
		}
		for (int i = 0; i < n - 1; i++) {
			sa = br.readLine().split(" ");
			int a = Integer.parseInt(sa[0]) - 1;
			int b = Integer.parseInt(sa[1]) - 1;
			list.get(a).add(b);
			list.get(b).add(a);
		}
		br.close();

		ans = new int[n];
		ans[0] = dfs(0, -1);
		dfs2(0, -1);

		PrintWriter pw = new PrintWriter(System.out);
		for (int i : ans) {
			pw.println(i);
		}
		pw.flush();
	}

	static int dfs(int x, int p) {
		int ret = 0;
		for (int i : list.get(x)) {
			if (i != p) {
				if (x > i) {
					ret++;
				}
				int res = dfs(i, x);
				ret += res;
			}
		}
		return ret;
	}

	static void dfs2(int x, int p) {
		for (int i : list.get(x)) {
			if (i != p) {
				if (x < i) {
					ans[i] = ans[x] + 1;
				} else {
					ans[i] = ans[x] - 1;
				}
				dfs2(i, x);
			}
		}
	}
}
0