結果

問題 No.357 品物の並び替え (Middle)
ユーザー buno15buno15
提出日時 2020-10-22 20:39:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 1,053 bytes
コンパイル時間 2,595 ms
コンパイル使用メモリ 76,572 KB
実行使用メモリ 38,348 KB
最終ジャッジ日時 2024-07-21 09:33:07
合計ジャッジ時間 4,220 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,024 KB
testcase_01 AC 53 ms
36,700 KB
testcase_02 AC 53 ms
36,744 KB
testcase_03 AC 54 ms
36,480 KB
testcase_04 AC 54 ms
36,888 KB
testcase_05 AC 53 ms
36,916 KB
testcase_06 AC 53 ms
36,816 KB
testcase_07 AC 53 ms
36,900 KB
testcase_08 AC 55 ms
36,912 KB
testcase_09 AC 73 ms
38,108 KB
testcase_10 AC 60 ms
36,980 KB
testcase_11 AC 58 ms
36,864 KB
testcase_12 AC 95 ms
38,348 KB
testcase_13 AC 85 ms
38,032 KB
testcase_14 AC 73 ms
37,956 KB
testcase_15 AC 57 ms
36,820 KB
testcase_16 AC 70 ms
37,408 KB
testcase_17 AC 59 ms
36,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		String str[] = br.readLine().split(" ");

		int n = Integer.parseInt(str[0]);
		int m = Integer.parseInt(str[1]);

		int score[][] = new int[n][n];

		for (int i = 0; i < m; i++) {
			str = br.readLine().split(" ");

			int a = Integer.parseInt(str[0]);
			int b = Integer.parseInt(str[1]);
			int s = Integer.parseInt(str[2]);

			score[a][b] = s;
		}

		int dp[] = new int[(1 << n)];

		dp[0] = 0;

		for (int bit = 0; bit < (1 << n); bit++) {
			for (int i = 0; i < n; i++) {
				if ((bit & (1 << i)) != 0)
					continue;

				int cost = 0;
				for (int j = 0; j < n; j++) {
					if ((bit & (1 << j)) != 0)
						continue;

					cost += score[j][i];
				}

				int now = ((bit | (1 << i)));
				dp[now] = Math.max(dp[now], dp[bit] + cost);
			}
		}

		System.out.println(dp[(1 << n) - 1]);
	}
}
0