結果

問題 No.1344 Typical Shortest Path Sum
ユーザー ks2mks2m
提出日時 2021-01-16 15:46:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,215 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 77,128 KB
実行使用メモリ 53,252 KB
最終ジャッジ日時 2024-05-05 18:38:10
合計ジャッジ時間 10,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,280 KB
testcase_01 AC 54 ms
50,528 KB
testcase_02 AC 55 ms
50,436 KB
testcase_03 AC 55 ms
49,984 KB
testcase_04 AC 55 ms
50,384 KB
testcase_05 AC 55 ms
50,176 KB
testcase_06 AC 54 ms
50,144 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 55 ms
50,032 KB
testcase_10 AC 55 ms
50,336 KB
testcase_11 AC 55 ms
49,952 KB
testcase_12 WA -
testcase_13 AC 54 ms
50,040 KB
testcase_14 AC 55 ms
50,448 KB
testcase_15 AC 54 ms
50,024 KB
testcase_16 AC 58 ms
50,040 KB
testcase_17 AC 55 ms
50,088 KB
testcase_18 AC 54 ms
50,332 KB
testcase_19 AC 54 ms
49,928 KB
testcase_20 AC 56 ms
50,324 KB
testcase_21 AC 55 ms
50,052 KB
testcase_22 AC 54 ms
50,048 KB
testcase_23 AC 54 ms
50,440 KB
testcase_24 AC 54 ms
50,112 KB
testcase_25 AC 54 ms
50,332 KB
testcase_26 AC 54 ms
50,284 KB
testcase_27 AC 54 ms
50,392 KB
testcase_28 AC 55 ms
50,076 KB
testcase_29 AC 54 ms
50,020 KB
testcase_30 AC 55 ms
50,284 KB
testcase_31 AC 56 ms
50,076 KB
testcase_32 AC 54 ms
50,336 KB
testcase_33 AC 54 ms
49,988 KB
testcase_34 AC 55 ms
50,556 KB
testcase_35 AC 55 ms
50,344 KB
testcase_36 AC 55 ms
50,296 KB
testcase_37 AC 55 ms
50,436 KB
testcase_38 AC 54 ms
50,432 KB
testcase_39 AC 55 ms
50,396 KB
testcase_40 AC 97 ms
52,192 KB
testcase_41 AC 100 ms
52,124 KB
testcase_42 AC 98 ms
51,984 KB
testcase_43 AC 100 ms
51,816 KB
testcase_44 AC 78 ms
51,456 KB
testcase_45 AC 75 ms
51,412 KB
testcase_46 AC 89 ms
51,320 KB
testcase_47 AC 89 ms
51,516 KB
testcase_48 AC 82 ms
51,520 KB
testcase_49 AC 94 ms
51,716 KB
testcase_50 AC 99 ms
52,272 KB
testcase_51 AC 85 ms
51,828 KB
testcase_52 AC 90 ms
51,132 KB
testcase_53 AC 88 ms
51,152 KB
testcase_54 AC 95 ms
52,152 KB
testcase_55 AC 76 ms
51,200 KB
testcase_56 AC 96 ms
52,000 KB
testcase_57 AC 90 ms
51,512 KB
testcase_58 AC 90 ms
51,240 KB
testcase_59 AC 88 ms
51,200 KB
testcase_60 AC 58 ms
50,400 KB
testcase_61 AC 55 ms
49,928 KB
testcase_62 AC 123 ms
52,872 KB
testcase_63 AC 68 ms
50,536 KB
testcase_64 AC 75 ms
51,044 KB
testcase_65 AC 120 ms
53,252 KB
testcase_66 AC 122 ms
53,040 KB
testcase_67 AC 123 ms
53,040 KB
testcase_68 AC 62 ms
50,060 KB
testcase_69 AC 67 ms
50,440 KB
testcase_70 AC 55 ms
49,952 KB
testcase_71 AC 56 ms
50,308 KB
testcase_72 AC 54 ms
49,920 KB
testcase_73 AC 55 ms
50,216 KB
testcase_74 AC 54 ms
50,008 KB
testcase_75 AC 55 ms
50,004 KB
testcase_76 AC 55 ms
50,244 KB
testcase_77 AC 55 ms
50,444 KB
testcase_78 AC 55 ms
50,324 KB
testcase_79 AC 56 ms
49,952 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