結果

問題 No.845 最長の切符
ユーザー 37zigen37zigen
提出日時 2019-07-06 02:17:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 344 ms / 3,000 ms
コード長 1,251 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 77,904 KB
実行使用メモリ 65,344 KB
最終ジャッジ日時 2024-09-22 15:17:26
合計ジャッジ時間 8,738 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,848 KB
testcase_01 AC 117 ms
52,996 KB
testcase_02 AC 137 ms
54,268 KB
testcase_03 AC 129 ms
54,244 KB
testcase_04 AC 130 ms
54,128 KB
testcase_05 AC 129 ms
53,856 KB
testcase_06 AC 130 ms
54,260 KB
testcase_07 AC 133 ms
54,204 KB
testcase_08 AC 142 ms
54,396 KB
testcase_09 AC 128 ms
54,056 KB
testcase_10 AC 158 ms
54,136 KB
testcase_11 AC 142 ms
54,244 KB
testcase_12 AC 146 ms
54,200 KB
testcase_13 AC 139 ms
54,252 KB
testcase_14 AC 140 ms
54,076 KB
testcase_15 AC 222 ms
56,968 KB
testcase_16 AC 344 ms
65,344 KB
testcase_17 AC 271 ms
58,592 KB
testcase_18 AC 258 ms
59,508 KB
testcase_19 AC 220 ms
56,932 KB
testcase_20 AC 283 ms
63,804 KB
testcase_21 AC 254 ms
63,532 KB
testcase_22 AC 252 ms
57,432 KB
testcase_23 AC 213 ms
56,784 KB
testcase_24 AC 305 ms
65,008 KB
testcase_25 AC 129 ms
53,936 KB
testcase_26 AC 196 ms
63,064 KB
testcase_27 AC 130 ms
54,052 KB
testcase_28 AC 211 ms
63,188 KB
testcase_29 AC 130 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {

		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		int[][] dist = new int[n][n];
		int m = sc.nextInt();
		for (int i = 0; i < m; ++i) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			int c = sc.nextInt();
			--a;
			--b;
			dist[a][b] = Math.max(dist[a][b], c);
			dist[b][a] = dist[a][b];
		}

		long[][] dp = new long[1 << n][n];
		for (int i = 0; i < dp.length; ++i)
			Arrays.fill(dp[i], -Integer.MAX_VALUE / 3);
		for (int i = 0; i < n; ++i)
			dp[1 << i][i] = 0;
		for (int s = 0; s < 1 << n; ++s) {
			for (int src = 0; src < n; ++src) {
				if ((s & (1 << src)) == 0)
					continue;
				for (int dst = 0; dst < n; ++dst) {
					if ((s & (1 << dst)) > 0)
						continue;
					if (dist[src][dst] == 0)
						continue;
					dp[s | (1 << dst)][dst] = Math.max(dp[s | (1 << dst)][dst], dp[s][src] + dist[src][dst]);
				}
			}
		}
		long ans=0;
		for(int i=0;i<dp.length;++i) {
			for(long v:dp[i]) {
				ans=Math.max(ans, v);
			}
		}
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0