結果

問題 No.845 最長の切符
ユーザー htensaihtensai
提出日時 2020-01-28 10:54:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,903 ms / 3,000 ms
コード長 1,671 bytes
コンパイル時間 3,104 ms
コンパイル使用メモリ 80,052 KB
実行使用メモリ 52,460 KB
最終ジャッジ日時 2024-09-15 07:53:16
合計ジャッジ時間 20,209 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,336 KB
testcase_01 AC 131 ms
41,060 KB
testcase_02 AC 133 ms
41,232 KB
testcase_03 AC 131 ms
41,336 KB
testcase_04 AC 131 ms
41,136 KB
testcase_05 AC 127 ms
41,432 KB
testcase_06 AC 116 ms
40,088 KB
testcase_07 AC 117 ms
40,096 KB
testcase_08 AC 157 ms
41,704 KB
testcase_09 AC 138 ms
41,480 KB
testcase_10 AC 228 ms
45,460 KB
testcase_11 AC 174 ms
42,940 KB
testcase_12 AC 173 ms
42,744 KB
testcase_13 AC 165 ms
42,736 KB
testcase_14 AC 158 ms
41,976 KB
testcase_15 AC 572 ms
46,744 KB
testcase_16 AC 2,903 ms
52,460 KB
testcase_17 AC 761 ms
48,572 KB
testcase_18 AC 1,216 ms
49,628 KB
testcase_19 AC 441 ms
46,460 KB
testcase_20 AC 2,305 ms
50,220 KB
testcase_21 AC 1,169 ms
50,592 KB
testcase_22 AC 654 ms
48,820 KB
testcase_23 AC 394 ms
47,684 KB
testcase_24 AC 2,858 ms
52,392 KB
testcase_25 AC 125 ms
41,044 KB
testcase_26 AC 134 ms
47,552 KB
testcase_27 AC 117 ms
39,864 KB
testcase_28 AC 144 ms
47,300 KB
testcase_29 AC 118 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static HashMap<Integer, Integer>[] graph;
    static int max = 0;
    static int[][] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        graph = new HashMap[n];
        for (int i = 0; i < n; i++) {
            graph[i] = new HashMap<>();
        }
        dp = new int[n][(int)(Math.pow(2, n))];
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            int c = sc.nextInt();
            if (!graph[a].containsKey(b) || graph[a].get(b) < c) {
                graph[a].put(b, c);
            }
            if (!graph[b].containsKey(a) || graph[b].get(a) < c) {
                graph[b].put(a, c);
            }
        }
        for (int i = 0; i < n; i++) {
            int[] costs = new int[n];
            Arrays.fill(costs, -1);
            search(i, 0, costs);
        }
       System.out.println(max);
   }
   
   static void search(int idx, int total, int[] costs) {
       if (costs[idx] != -1) {
           return;
       }
       int key = 0;
       for (int i = 0; i < costs.length; i++) {
           key *= 2;
           if (costs[i] != -1) {
               key++;
           }
       }
       if (total != 0 && dp[idx][key] >= total) {
           return;
       }
       dp[idx][key] = total;
       max = Math.max(max, total);
       costs[idx] = total;
       for (Map.Entry<Integer, Integer> entry : graph[idx].entrySet()) {
           search(entry.getKey(), total + entry.getValue(), costs);
       }
       costs[idx] = -1;
   }
}
0