結果

問題 No.1344 Typical Shortest Path Sum
ユーザー ks2mks2m
提出日時 2021-01-16 15:49:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 1,234 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 76,172 KB
実行使用メモリ 40,504 KB
最終ジャッジ日時 2024-11-27 18:46:52
合計ジャッジ時間 8,771 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,796 KB
testcase_01 AC 47 ms
37,024 KB
testcase_02 AC 46 ms
37,036 KB
testcase_03 AC 47 ms
37,092 KB
testcase_04 AC 48 ms
36,804 KB
testcase_05 AC 46 ms
37,092 KB
testcase_06 AC 47 ms
36,664 KB
testcase_07 AC 49 ms
36,684 KB
testcase_08 AC 46 ms
37,256 KB
testcase_09 AC 45 ms
36,684 KB
testcase_10 AC 45 ms
37,068 KB
testcase_11 AC 47 ms
36,656 KB
testcase_12 AC 45 ms
36,660 KB
testcase_13 AC 46 ms
37,152 KB
testcase_14 AC 46 ms
37,160 KB
testcase_15 AC 46 ms
36,948 KB
testcase_16 AC 50 ms
36,888 KB
testcase_17 AC 46 ms
37,048 KB
testcase_18 AC 46 ms
36,556 KB
testcase_19 AC 46 ms
36,796 KB
testcase_20 AC 45 ms
37,224 KB
testcase_21 AC 45 ms
37,148 KB
testcase_22 AC 47 ms
37,240 KB
testcase_23 AC 47 ms
37,000 KB
testcase_24 AC 45 ms
37,012 KB
testcase_25 AC 46 ms
37,308 KB
testcase_26 AC 51 ms
36,684 KB
testcase_27 AC 47 ms
36,912 KB
testcase_28 AC 47 ms
36,960 KB
testcase_29 AC 46 ms
37,296 KB
testcase_30 AC 44 ms
37,308 KB
testcase_31 AC 45 ms
37,132 KB
testcase_32 AC 45 ms
36,956 KB
testcase_33 AC 46 ms
37,128 KB
testcase_34 AC 46 ms
37,256 KB
testcase_35 AC 46 ms
36,864 KB
testcase_36 AC 48 ms
36,992 KB
testcase_37 AC 48 ms
37,196 KB
testcase_38 AC 50 ms
37,160 KB
testcase_39 AC 48 ms
36,952 KB
testcase_40 AC 90 ms
39,228 KB
testcase_41 AC 82 ms
38,644 KB
testcase_42 AC 89 ms
38,460 KB
testcase_43 AC 85 ms
38,508 KB
testcase_44 AC 81 ms
38,632 KB
testcase_45 AC 83 ms
38,664 KB
testcase_46 AC 84 ms
38,760 KB
testcase_47 AC 88 ms
39,060 KB
testcase_48 AC 81 ms
38,576 KB
testcase_49 AC 86 ms
38,448 KB
testcase_50 AC 76 ms
38,572 KB
testcase_51 AC 80 ms
38,444 KB
testcase_52 AC 83 ms
38,596 KB
testcase_53 AC 84 ms
38,612 KB
testcase_54 AC 84 ms
38,448 KB
testcase_55 AC 81 ms
38,304 KB
testcase_56 AC 87 ms
38,924 KB
testcase_57 AC 82 ms
38,544 KB
testcase_58 AC 86 ms
38,812 KB
testcase_59 AC 88 ms
38,456 KB
testcase_60 AC 51 ms
37,288 KB
testcase_61 AC 48 ms
36,556 KB
testcase_62 AC 107 ms
40,004 KB
testcase_63 AC 55 ms
36,944 KB
testcase_64 AC 59 ms
37,496 KB
testcase_65 AC 112 ms
40,456 KB
testcase_66 AC 108 ms
40,152 KB
testcase_67 AC 109 ms
40,504 KB
testcase_68 AC 53 ms
37,436 KB
testcase_69 AC 53 ms
37,256 KB
testcase_70 AC 47 ms
37,032 KB
testcase_71 AC 45 ms
37,176 KB
testcase_72 AC 45 ms
36,960 KB
testcase_73 AC 46 ms
36,832 KB
testcase_74 AC 45 ms
37,100 KB
testcase_75 AC 47 ms
36,972 KB
testcase_76 AC 47 ms
37,152 KB
testcase_77 AC 47 ms
36,832 KB
testcase_78 AC 45 ms
37,168 KB
testcase_79 AC 47 ms
36,784 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] = Math.min(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