結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,900 KB
testcase_01 AC 45 ms
37,008 KB
testcase_02 AC 45 ms
36,572 KB
testcase_03 AC 45 ms
36,660 KB
testcase_04 AC 47 ms
36,700 KB
testcase_05 AC 49 ms
37,056 KB
testcase_06 AC 45 ms
37,032 KB
testcase_07 AC 45 ms
36,892 KB
testcase_08 AC 46 ms
36,892 KB
testcase_09 AC 46 ms
36,948 KB
testcase_10 AC 45 ms
36,904 KB
testcase_11 AC 44 ms
36,848 KB
testcase_12 AC 45 ms
37,024 KB
testcase_13 AC 45 ms
37,036 KB
testcase_14 AC 47 ms
36,632 KB
testcase_15 AC 48 ms
36,852 KB
testcase_16 AC 48 ms
36,648 KB
testcase_17 AC 44 ms
36,572 KB
testcase_18 AC 44 ms
37,020 KB
testcase_19 AC 45 ms
36,548 KB
testcase_20 AC 46 ms
36,856 KB
testcase_21 AC 46 ms
36,880 KB
testcase_22 AC 45 ms
36,992 KB
testcase_23 AC 47 ms
36,860 KB
testcase_24 AC 48 ms
36,668 KB
testcase_25 AC 47 ms
36,776 KB
testcase_26 AC 47 ms
36,984 KB
testcase_27 AC 45 ms
36,776 KB
testcase_28 AC 45 ms
36,620 KB
testcase_29 AC 46 ms
37,020 KB
testcase_30 AC 47 ms
37,096 KB
testcase_31 AC 44 ms
36,776 KB
testcase_32 AC 44 ms
36,936 KB
testcase_33 AC 45 ms
36,428 KB
testcase_34 AC 45 ms
36,816 KB
testcase_35 AC 45 ms
36,864 KB
testcase_36 AC 45 ms
36,948 KB
testcase_37 AC 45 ms
36,660 KB
testcase_38 AC 49 ms
36,528 KB
testcase_39 AC 48 ms
37,036 KB
testcase_40 AC 82 ms
38,124 KB
testcase_41 AC 91 ms
38,784 KB
testcase_42 AC 85 ms
38,992 KB
testcase_43 AC 66 ms
37,920 KB
testcase_44 AC 90 ms
38,864 KB
testcase_45 AC 81 ms
38,384 KB
testcase_46 AC 84 ms
38,356 KB
testcase_47 AC 77 ms
37,988 KB
testcase_48 AC 87 ms
39,040 KB
testcase_49 AC 81 ms
38,616 KB
testcase_50 AC 70 ms
38,180 KB
testcase_51 AC 77 ms
38,092 KB
testcase_52 AC 87 ms
37,972 KB
testcase_53 AC 87 ms
38,912 KB
testcase_54 AC 77 ms
37,912 KB
testcase_55 AC 70 ms
38,120 KB
testcase_56 AC 81 ms
37,908 KB
testcase_57 AC 76 ms
37,928 KB
testcase_58 AC 81 ms
38,420 KB
testcase_59 AC 92 ms
38,124 KB
testcase_60 AC 49 ms
36,960 KB
testcase_61 AC 47 ms
37,044 KB
testcase_62 AC 110 ms
40,060 KB
testcase_63 AC 54 ms
37,180 KB
testcase_64 AC 69 ms
37,540 KB
testcase_65 AC 103 ms
39,880 KB
testcase_66 AC 116 ms
39,624 KB
testcase_67 AC 111 ms
39,964 KB
testcase_68 AC 54 ms
36,968 KB
testcase_69 AC 53 ms
37,144 KB
testcase_70 AC 47 ms
36,904 KB
testcase_71 AC 48 ms
37,096 KB
testcase_72 AC 47 ms
36,472 KB
testcase_73 AC 46 ms
36,988 KB
testcase_74 AC 47 ms
36,972 KB
testcase_75 AC 45 ms
36,984 KB
testcase_76 AC 44 ms
36,972 KB
testcase_77 AC 46 ms
36,928 KB
testcase_78 AC 46 ms
36,768 KB
testcase_79 AC 46 ms
36,992 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