結果

問題 No.519 アイドルユニット
ユーザー htensaihtensai
提出日時 2020-02-13 15:25:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 249 ms / 1,000 ms
コード長 1,111 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 77,816 KB
実行使用メモリ 122,372 KB
最終ジャッジ日時 2024-10-06 00:14:52
合計ジャッジ時間 9,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
122,176 KB
testcase_01 AC 249 ms
122,052 KB
testcase_02 AC 188 ms
74,168 KB
testcase_03 AC 153 ms
56,532 KB
testcase_04 AC 119 ms
54,052 KB
testcase_05 AC 122 ms
53,952 KB
testcase_06 AC 126 ms
54,044 KB
testcase_07 AC 121 ms
53,732 KB
testcase_08 AC 132 ms
54,012 KB
testcase_09 AC 136 ms
54,380 KB
testcase_10 AC 144 ms
54,264 KB
testcase_11 AC 161 ms
56,084 KB
testcase_12 AC 114 ms
53,852 KB
testcase_13 AC 154 ms
56,376 KB
testcase_14 AC 154 ms
56,444 KB
testcase_15 AC 166 ms
56,188 KB
testcase_16 AC 167 ms
56,616 KB
testcase_17 AC 155 ms
56,616 KB
testcase_18 AC 162 ms
56,488 KB
testcase_19 AC 160 ms
56,216 KB
testcase_20 AC 155 ms
56,260 KB
testcase_21 AC 162 ms
56,448 KB
testcase_22 AC 162 ms
56,420 KB
testcase_23 AC 165 ms
56,504 KB
testcase_24 AC 171 ms
58,532 KB
testcase_25 AC 177 ms
58,440 KB
testcase_26 AC 175 ms
60,616 KB
testcase_27 AC 186 ms
58,624 KB
testcase_28 AC 176 ms
58,364 KB
testcase_29 AC 241 ms
122,372 KB
testcase_30 AC 241 ms
122,144 KB
testcase_31 AC 246 ms
122,088 KB
testcase_32 AC 236 ms
121,968 KB
testcase_33 AC 124 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int n;
    static int[][] field;
    static int[] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        field = new int[n][n];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                field[i][j] = 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 key) {
        if (dp[key] != -1) {
            return dp[key];
        }
        int max = Integer.MIN_VALUE;
        for (int i = 0; i < n - 1; i++) {
            if ((key & (1 << i)) == 0) {
                continue;
            }
            for (int j = i + 1; j < n; j++) {
                if ((key & (1 << j)) == 0) {
                    continue;
                }
                max = Math.max(max, dfw(key ^ ((1 << i) | (1 << j))) + field[i][j]);
            }
            break;
        }
        dp[key] = max;
        return max;
    }
}
0