結果

問題 No.1344 Typical Shortest Path Sum
ユーザー tentententen
提出日時 2022-08-17 13:18:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 2,033 bytes
コンパイル時間 2,964 ms
コンパイル使用メモリ 78,116 KB
実行使用メモリ 52,860 KB
最終ジャッジ日時 2024-10-04 14:16:03
合計ジャッジ時間 8,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
49,968 KB
testcase_01 AC 47 ms
50,164 KB
testcase_02 AC 47 ms
50,424 KB
testcase_03 AC 48 ms
50,436 KB
testcase_04 AC 48 ms
50,228 KB
testcase_05 AC 48 ms
50,380 KB
testcase_06 AC 49 ms
50,308 KB
testcase_07 AC 47 ms
49,800 KB
testcase_08 AC 48 ms
50,208 KB
testcase_09 AC 49 ms
50,248 KB
testcase_10 AC 47 ms
50,260 KB
testcase_11 AC 50 ms
50,016 KB
testcase_12 AC 48 ms
50,128 KB
testcase_13 AC 48 ms
50,016 KB
testcase_14 AC 49 ms
50,392 KB
testcase_15 AC 48 ms
49,896 KB
testcase_16 AC 52 ms
49,896 KB
testcase_17 AC 48 ms
50,044 KB
testcase_18 AC 48 ms
50,312 KB
testcase_19 AC 48 ms
49,892 KB
testcase_20 AC 48 ms
49,816 KB
testcase_21 AC 48 ms
49,764 KB
testcase_22 AC 48 ms
50,252 KB
testcase_23 AC 48 ms
50,460 KB
testcase_24 AC 48 ms
49,960 KB
testcase_25 AC 47 ms
50,048 KB
testcase_26 AC 49 ms
50,048 KB
testcase_27 AC 47 ms
49,828 KB
testcase_28 AC 48 ms
50,532 KB
testcase_29 AC 47 ms
50,352 KB
testcase_30 AC 48 ms
49,888 KB
testcase_31 AC 47 ms
49,956 KB
testcase_32 AC 48 ms
49,940 KB
testcase_33 AC 48 ms
50,264 KB
testcase_34 AC 47 ms
50,176 KB
testcase_35 AC 47 ms
50,376 KB
testcase_36 AC 47 ms
50,320 KB
testcase_37 AC 47 ms
50,352 KB
testcase_38 AC 46 ms
50,128 KB
testcase_39 AC 51 ms
50,340 KB
testcase_40 AC 70 ms
51,240 KB
testcase_41 AC 81 ms
51,568 KB
testcase_42 AC 73 ms
52,068 KB
testcase_43 AC 65 ms
51,164 KB
testcase_44 AC 81 ms
52,068 KB
testcase_45 AC 81 ms
51,776 KB
testcase_46 AC 68 ms
51,180 KB
testcase_47 AC 67 ms
51,148 KB
testcase_48 AC 69 ms
51,304 KB
testcase_49 AC 78 ms
52,020 KB
testcase_50 AC 69 ms
51,468 KB
testcase_51 AC 85 ms
52,076 KB
testcase_52 AC 81 ms
51,976 KB
testcase_53 AC 68 ms
51,400 KB
testcase_54 AC 79 ms
52,008 KB
testcase_55 AC 72 ms
51,820 KB
testcase_56 AC 82 ms
51,460 KB
testcase_57 AC 67 ms
51,128 KB
testcase_58 AC 72 ms
52,304 KB
testcase_59 AC 90 ms
52,344 KB
testcase_60 AC 51 ms
50,400 KB
testcase_61 AC 46 ms
50,320 KB
testcase_62 AC 106 ms
52,548 KB
testcase_63 AC 62 ms
50,624 KB
testcase_64 AC 76 ms
50,872 KB
testcase_65 AC 115 ms
52,816 KB
testcase_66 AC 100 ms
51,740 KB
testcase_67 AC 113 ms
52,860 KB
testcase_68 AC 55 ms
50,484 KB
testcase_69 AC 60 ms
50,044 KB
testcase_70 AC 48 ms
50,468 KB
testcase_71 AC 46 ms
50,288 KB
testcase_72 AC 47 ms
50,016 KB
testcase_73 AC 45 ms
49,996 KB
testcase_74 AC 47 ms
50,008 KB
testcase_75 AC 48 ms
50,472 KB
testcase_76 AC 48 ms
50,372 KB
testcase_77 AC 48 ms
50,152 KB
testcase_78 AC 47 ms
49,992 KB
testcase_79 AC 49 ms
50,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        long[][] costs = new long[n][n];
        for (int i = 0; i < n; i++) {
            Arrays.fill(costs[i], Long.MAX_VALUE / 2);
            costs[i][i] = 0;
        }
        for (int i = 0; i < m; i++) {
            int left = sc.nextInt() - 1;
            int right = sc.nextInt() - 1;
            long v = sc.nextLong();
            costs[left][right] = Math.min(costs[left][right], v);
        }
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                for (int k = 0; k < n; k++) {
                    if (costs[j][i] < Long.MAX_VALUE / 2 && costs[i][k] < Long.MAX_VALUE / 2) {
                        costs[j][k] = Math.min(costs[j][k], costs[j][i] + costs[i][k]);
                    }
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            long sum = 0;
            for (long x : costs[i]) {
                if (x < Long.MAX_VALUE / 2) {
                    sum += x;
                }
            }
            sb.append(sum).append("\n");
        }
        System.out.print(sb);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0