結果

問題 No.845 最長の切符
ユーザー htensaihtensai
提出日時 2020-01-28 11:47:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 469 ms / 3,000 ms
コード長 1,918 bytes
コンパイル時間 2,821 ms
コンパイル使用メモリ 79,060 KB
実行使用メモリ 48,224 KB
最終ジャッジ日時 2024-09-15 10:50:08
合計ジャッジ時間 7,727 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,872 KB
testcase_01 AC 51 ms
36,512 KB
testcase_02 AC 52 ms
36,840 KB
testcase_03 AC 52 ms
36,844 KB
testcase_04 AC 52 ms
36,688 KB
testcase_05 AC 51 ms
37,000 KB
testcase_06 AC 51 ms
36,828 KB
testcase_07 AC 52 ms
36,932 KB
testcase_08 AC 57 ms
36,660 KB
testcase_09 AC 52 ms
37,000 KB
testcase_10 AC 84 ms
38,212 KB
testcase_11 AC 57 ms
36,700 KB
testcase_12 AC 64 ms
37,084 KB
testcase_13 AC 55 ms
36,920 KB
testcase_14 AC 56 ms
37,024 KB
testcase_15 AC 156 ms
41,192 KB
testcase_16 AC 455 ms
47,996 KB
testcase_17 AC 173 ms
41,744 KB
testcase_18 AC 239 ms
42,496 KB
testcase_19 AC 125 ms
40,928 KB
testcase_20 AC 447 ms
47,588 KB
testcase_21 AC 434 ms
47,988 KB
testcase_22 AC 166 ms
41,672 KB
testcase_23 AC 117 ms
40,812 KB
testcase_24 AC 469 ms
48,224 KB
testcase_25 AC 53 ms
36,540 KB
testcase_26 AC 59 ms
44,248 KB
testcase_27 AC 53 ms
37,020 KB
testcase_28 AC 62 ms
44,664 KB
testcase_29 AC 51 ms
36,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static HashMap<Integer, Integer>[] graph;
    static int[][] dp;
    static int n;
    public static void main(String[] args) throws Exception {
        long start = System.currentTimeMillis();
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        n = Integer.parseInt(first[0]);
        int m = Integer.parseInt(first[1]);
        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++) {
            String[] line = br.readLine().split(" ", 3);
            int a = Integer.parseInt(line[0]) - 1;
            int b = Integer.parseInt(line[1]) - 1;
            int c = Integer.parseInt(line[2]);
            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);
            }
        }
        int all = (int)(Math.pow(2, n)) - 1;
        int max = 0;
        for (int i = 0; i < n; i++) {
            max = Math.max(max, dfw(i, (int)(Math.pow(2, i)) ^ all));
        }
        System.out.println(max);
   }
   
   static int dfw(int idx, int key) {
       if (key == 0) {
           return 0;
       }
       if (dp[idx][key] != 0) {
           return dp[idx][key];
       }
       int max = 0;
       for (int i = 0; i < n; i++) {
           int value = (int)(Math.pow(2, i));
           if ((value & key) == 0) {
               continue;
           }
           if (!graph[idx].containsKey(i)) {
               continue;
           }
           max = Math.max(max, dfw(i, key ^ value) + graph[idx].get(i));
       }
       dp[idx][key] = max;
       return max;
   }
}
0