結果

問題 No.1507 Road Blocked
ユーザー ks2mks2m
提出日時 2021-05-14 22:32:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 1,433 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 78,260 KB
実行使用メモリ 72,096 KB
最終ジャッジ日時 2024-10-02 02:20:57
合計ジャッジ時間 19,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,796 KB
testcase_01 AC 53 ms
36,844 KB
testcase_02 AC 54 ms
36,732 KB
testcase_03 AC 380 ms
72,096 KB
testcase_04 AC 530 ms
60,200 KB
testcase_05 AC 534 ms
59,756 KB
testcase_06 AC 532 ms
61,832 KB
testcase_07 AC 542 ms
59,556 KB
testcase_08 AC 545 ms
60,084 KB
testcase_09 AC 556 ms
61,548 KB
testcase_10 AC 578 ms
61,192 KB
testcase_11 AC 540 ms
61,828 KB
testcase_12 AC 514 ms
60,544 KB
testcase_13 AC 421 ms
59,524 KB
testcase_14 AC 463 ms
60,288 KB
testcase_15 AC 548 ms
61,520 KB
testcase_16 AC 563 ms
61,708 KB
testcase_17 AC 553 ms
61,732 KB
testcase_18 AC 541 ms
61,808 KB
testcase_19 AC 567 ms
61,088 KB
testcase_20 AC 522 ms
61,756 KB
testcase_21 AC 528 ms
59,744 KB
testcase_22 AC 535 ms
61,680 KB
testcase_23 AC 532 ms
61,028 KB
testcase_24 AC 527 ms
61,744 KB
testcase_25 AC 648 ms
61,608 KB
testcase_26 AC 533 ms
60,576 KB
testcase_27 AC 528 ms
61,984 KB
testcase_28 AC 523 ms
61,184 KB
testcase_29 AC 537 ms
59,720 KB
testcase_30 AC 527 ms
61,168 KB
testcase_31 AC 428 ms
59,428 KB
testcase_32 AC 448 ms
59,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	static int n;
	static long ng;
	static List<List<Integer>> list;

	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();

		int mod = 998244353;
		dfs(0, -1);
		long total = (long) n * (n - 1) / 2 * (n - 1);
		long ok = total - ng;
		total %= mod;
		ok %= mod;
		long mt = modinv(total, mod);
		long ans = ok * mt % mod;
		System.out.println(ans);
	}

	static int dfs(int x, int p) {
		int ret = 1;
		for (int i : list.get(x)) {
			if (i != p) {
				int res = dfs(i, x);
				ret += res;
			}
		}
		ng += (long) ret * (n - ret);
		return ret;
	}

	static long modinv(long a, int m) {
		long b = m;
		long u = 1;
		long v = 0;
		long tmp = 0;

		while (b > 0) {
			long t = a / b;
			a -= t * b;
			tmp = a;
			a = b;
			b = tmp;

			u -= t * v;
			tmp = u;
			u = v;
			v = tmp;
		}

		u %= m;
		if (u < 0) u += m;
		return u;
	}
}
0