結果

問題 No.845 最長の切符
ユーザー tentententen
提出日時 2021-03-10 18:01:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 279 ms / 3,000 ms
コード長 1,481 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 79,196 KB
実行使用メモリ 60,116 KB
最終ジャッジ日時 2024-10-12 08:42:13
合計ジャッジ時間 6,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,008 KB
testcase_01 AC 56 ms
50,044 KB
testcase_02 AC 75 ms
51,628 KB
testcase_03 AC 54 ms
50,408 KB
testcase_04 AC 54 ms
50,388 KB
testcase_05 AC 54 ms
50,320 KB
testcase_06 AC 53 ms
49,912 KB
testcase_07 AC 54 ms
50,236 KB
testcase_08 AC 61 ms
50,468 KB
testcase_09 AC 55 ms
50,316 KB
testcase_10 AC 93 ms
52,636 KB
testcase_11 AC 58 ms
50,040 KB
testcase_12 AC 85 ms
52,344 KB
testcase_13 AC 57 ms
50,352 KB
testcase_14 AC 79 ms
51,448 KB
testcase_15 AC 138 ms
53,260 KB
testcase_16 AC 253 ms
57,796 KB
testcase_17 AC 151 ms
53,292 KB
testcase_18 AC 168 ms
55,660 KB
testcase_19 AC 120 ms
53,420 KB
testcase_20 AC 244 ms
58,244 KB
testcase_21 AC 260 ms
60,116 KB
testcase_22 AC 167 ms
53,488 KB
testcase_23 AC 129 ms
53,380 KB
testcase_24 AC 279 ms
59,960 KB
testcase_25 AC 53 ms
50,028 KB
testcase_26 AC 201 ms
58,996 KB
testcase_27 AC 53 ms
50,216 KB
testcase_28 AC 194 ms
58,228 KB
testcase_29 AC 54 ms
50,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main (String[] args) throws Exception{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] first = br.readLine().split(" ", 2);
		int n = Integer.parseInt(first[0]);
		int m = Integer.parseInt(first[1]);
		ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>();
		for (int i = 0; i < n; i++) {
		    graph.add(new HashMap<>());
		}
		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.get(a).containsKey(b) || graph.get(a).get(b) < c) {
		        graph.get(a).put(b, c);
		    }
		    if (!graph.get(b).containsKey(a) || graph.get(b).get(a) < c) {
		        graph.get(b).put(a, c);
		    }
		}
		int[][] dp = new int[n][1 << n];
		int max = 0;
		for (int i = 1; i < (1 << n); i++) {
		    for (int j = 0; j < n; j++) {
		        if ((i & (1 << j)) == 0) {
		            continue;
		        } 
		        for (int k = 0; k < n; k++) {
		            if (k == j || (i & (1 << k)) == 0) {
		                continue;
		            }
		            if (graph.get(j).containsKey(k)) {
		                dp[j][i] = Math.max(dp[j][i], dp[k][i ^ (1 << j)] + graph.get(j).get(k));
		            }
		        }
		        max = Math.max(max, dp[j][i]);
		    }
		}
		System.out.println(max);
	}
}
0