結果

問題 No.1817 Reversed Edges
ユーザー ks2mks2m
提出日時 2022-01-21 22:43:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 839 ms / 2,000 ms
コード長 1,319 bytes
コンパイル時間 2,541 ms
コンパイル使用メモリ 78,516 KB
実行使用メモリ 73,352 KB
最終ジャッジ日時 2024-05-04 13:56:38
合計ジャッジ時間 16,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,132 KB
testcase_01 AC 56 ms
37,388 KB
testcase_02 AC 55 ms
37,228 KB
testcase_03 AC 54 ms
37,392 KB
testcase_04 AC 55 ms
36,952 KB
testcase_05 AC 55 ms
37,264 KB
testcase_06 AC 54 ms
37,176 KB
testcase_07 AC 655 ms
59,728 KB
testcase_08 AC 386 ms
51,452 KB
testcase_09 AC 655 ms
59,156 KB
testcase_10 AC 413 ms
52,508 KB
testcase_11 AC 493 ms
54,352 KB
testcase_12 AC 698 ms
64,032 KB
testcase_13 AC 839 ms
64,148 KB
testcase_14 AC 751 ms
64,388 KB
testcase_15 AC 825 ms
64,116 KB
testcase_16 AC 692 ms
62,624 KB
testcase_17 AC 716 ms
64,260 KB
testcase_18 AC 808 ms
64,148 KB
testcase_19 AC 702 ms
64,372 KB
testcase_20 AC 771 ms
62,520 KB
testcase_21 AC 699 ms
64,228 KB
testcase_22 AC 550 ms
61,164 KB
testcase_23 AC 509 ms
63,436 KB
testcase_24 AC 534 ms
73,352 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