結果

問題 No.1344 Typical Shortest Path Sum
ユーザー ks2mks2m
提出日時 2021-01-16 15:46:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,215 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 76,208 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-11-27 18:43:08
合計ジャッジ時間 8,545 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,988 KB
testcase_01 AC 46 ms
37,172 KB
testcase_02 AC 45 ms
36,780 KB
testcase_03 AC 46 ms
36,864 KB
testcase_04 AC 47 ms
37,220 KB
testcase_05 AC 44 ms
36,908 KB
testcase_06 AC 46 ms
36,660 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 46 ms
37,000 KB
testcase_10 AC 46 ms
36,668 KB
testcase_11 AC 45 ms
37,332 KB
testcase_12 WA -
testcase_13 AC 45 ms
36,524 KB
testcase_14 AC 44 ms
37,084 KB
testcase_15 AC 46 ms
36,928 KB
testcase_16 AC 50 ms
36,932 KB
testcase_17 AC 45 ms
37,080 KB
testcase_18 AC 46 ms
37,064 KB
testcase_19 AC 46 ms
37,208 KB
testcase_20 AC 45 ms
36,824 KB
testcase_21 AC 46 ms
37,140 KB
testcase_22 AC 46 ms
36,920 KB
testcase_23 AC 44 ms
36,776 KB
testcase_24 AC 45 ms
37,044 KB
testcase_25 AC 46 ms
37,168 KB
testcase_26 AC 45 ms
36,776 KB
testcase_27 AC 46 ms
37,116 KB
testcase_28 AC 46 ms
37,336 KB
testcase_29 AC 44 ms
37,116 KB
testcase_30 AC 45 ms
36,992 KB
testcase_31 AC 46 ms
37,116 KB
testcase_32 AC 45 ms
36,916 KB
testcase_33 AC 44 ms
37,036 KB
testcase_34 AC 44 ms
37,028 KB
testcase_35 AC 44 ms
36,780 KB
testcase_36 AC 44 ms
37,040 KB
testcase_37 AC 46 ms
36,864 KB
testcase_38 AC 46 ms
37,044 KB
testcase_39 AC 46 ms
37,200 KB
testcase_40 AC 82 ms
38,748 KB
testcase_41 AC 78 ms
38,472 KB
testcase_42 AC 87 ms
39,088 KB
testcase_43 AC 86 ms
38,740 KB
testcase_44 AC 84 ms
38,436 KB
testcase_45 AC 90 ms
39,128 KB
testcase_46 AC 74 ms
38,940 KB
testcase_47 AC 79 ms
38,612 KB
testcase_48 AC 82 ms
38,736 KB
testcase_49 AC 83 ms
38,752 KB
testcase_50 AC 87 ms
39,084 KB
testcase_51 AC 90 ms
38,892 KB
testcase_52 AC 78 ms
37,892 KB
testcase_53 AC 73 ms
38,232 KB
testcase_54 AC 79 ms
38,324 KB
testcase_55 AC 74 ms
39,196 KB
testcase_56 AC 89 ms
38,980 KB
testcase_57 AC 86 ms
38,956 KB
testcase_58 AC 74 ms
38,584 KB
testcase_59 AC 84 ms
38,608 KB
testcase_60 AC 49 ms
37,276 KB
testcase_61 AC 46 ms
36,900 KB
testcase_62 AC 105 ms
39,880 KB
testcase_63 AC 54 ms
37,016 KB
testcase_64 AC 62 ms
37,132 KB
testcase_65 AC 117 ms
40,320 KB
testcase_66 AC 112 ms
40,120 KB
testcase_67 AC 113 ms
40,020 KB
testcase_68 AC 54 ms
36,780 KB
testcase_69 AC 55 ms
37,212 KB
testcase_70 AC 46 ms
36,908 KB
testcase_71 AC 45 ms
36,992 KB
testcase_72 AC 46 ms
37,092 KB
testcase_73 AC 48 ms
36,932 KB
testcase_74 AC 45 ms
36,820 KB
testcase_75 AC 46 ms
37,316 KB
testcase_76 AC 47 ms
36,936 KB
testcase_77 AC 46 ms
36,784 KB
testcase_78 AC 46 ms
36,932 KB
testcase_79 AC 48 ms
37,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);

		long inf = 1000000000000000000L;
		long[][] d = new long[n][n];
		for (int i = 0; i < n; i++) {
			for (int j = 0; j < n; j++) {
				if (i != j) {
					d[i][j] = inf;
				}
			}
		}

		for (int i = 0; i < m; i++) {
			sa = br.readLine().split(" ");
			int a = Integer.parseInt(sa[0]) - 1;
			int b = Integer.parseInt(sa[1]) - 1;
			long c = Long.parseLong(sa[2]);
			d[a][b] = c;
		}
		br.close();

		for (int k = 0; k < n; k++) {
			for (int i = 0; i < n; i++) {
				for (int j = 0; j < n; j++) {
					if (d[i][k] != inf && d[k][j] != inf) {
						d[i][j] = Math.min(d[i][j], d[i][k] + d[k][j]);
					}
				}
			}
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < n; i++) {
			long ans = 0;
			for (int j = 0; j < n; j++) {
				if (d[i][j] != inf) {
					ans += d[i][j];
				}
			}
			pw.println(ans);
		}
		pw.flush();
	}
}
0