結果

問題 No.357 品物の並び替え (Middle)
ユーザー tentententen
提出日時 2020-12-23 19:16:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 1,104 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-09-21 16:29:38
合計ジャッジ時間 5,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,452 KB
testcase_01 AC 117 ms
41,264 KB
testcase_02 AC 126 ms
41,656 KB
testcase_03 AC 125 ms
41,812 KB
testcase_04 AC 127 ms
41,328 KB
testcase_05 AC 128 ms
41,404 KB
testcase_06 AC 127 ms
41,468 KB
testcase_07 AC 104 ms
39,984 KB
testcase_08 AC 128 ms
41,688 KB
testcase_09 AC 150 ms
41,736 KB
testcase_10 AC 153 ms
41,596 KB
testcase_11 AC 139 ms
41,648 KB
testcase_12 AC 173 ms
41,856 KB
testcase_13 AC 153 ms
41,704 KB
testcase_14 AC 150 ms
41,524 KB
testcase_15 AC 132 ms
40,976 KB
testcase_16 AC 146 ms
41,852 KB
testcase_17 AC 145 ms
41,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int n;
    static int[][] score;
    static int[] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        int m = sc.nextInt();
        score = new int[n][n];
        for (int i = 0; i < m; i++) {
            score[sc.nextInt()][sc.nextInt()] = sc.nextInt();
        }
        dp = new int[1 << n];
        Arrays.fill(dp, -1);
        dp[0] = 0;
        System.out.println(dfw((1 << n) - 1));
    }
    
    static int dfw(int mask) {
        if (dp[mask] < 0) {
            for (int i = 0; i < n; i++) {
                if ((mask & (1 << i)) == 0) {
                    continue;
                }
                int sum = 0;
                for (int j = 0; j < n; j++) {
                    if (i == j || (mask & (1 << j)) == 0) {
                        continue;
                    }
                    sum += score[j][i];
                }
                dp[mask] = Math.max(dp[mask], dfw(mask ^ (1 << i)) + sum);
            }
        }
        return dp[mask];
    }
}
0