結果

問題 No.519 アイドルユニット
ユーザー tentententen
提出日時 2021-05-17 15:13:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 633 ms / 1,000 ms
コード長 1,984 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 78,604 KB
実行使用メモリ 66,000 KB
最終ジャッジ日時 2024-10-06 14:50:51
合計ジャッジ時間 10,450 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 633 ms
62,756 KB
testcase_01 AC 513 ms
65,756 KB
testcase_02 AC 285 ms
54,392 KB
testcase_03 AC 116 ms
41,920 KB
testcase_04 AC 52 ms
36,836 KB
testcase_05 AC 52 ms
37,152 KB
testcase_06 AC 52 ms
37,184 KB
testcase_07 AC 54 ms
37,276 KB
testcase_08 AC 56 ms
37,168 KB
testcase_09 AC 76 ms
38,704 KB
testcase_10 AC 95 ms
39,224 KB
testcase_11 AC 106 ms
41,904 KB
testcase_12 AC 51 ms
36,880 KB
testcase_13 AC 106 ms
41,816 KB
testcase_14 AC 117 ms
42,348 KB
testcase_15 AC 110 ms
42,296 KB
testcase_16 AC 112 ms
42,092 KB
testcase_17 AC 103 ms
42,776 KB
testcase_18 AC 109 ms
42,328 KB
testcase_19 AC 113 ms
42,100 KB
testcase_20 AC 113 ms
42,108 KB
testcase_21 AC 108 ms
42,544 KB
testcase_22 AC 109 ms
42,352 KB
testcase_23 AC 114 ms
42,384 KB
testcase_24 AC 155 ms
47,016 KB
testcase_25 AC 154 ms
47,376 KB
testcase_26 AC 149 ms
48,076 KB
testcase_27 AC 150 ms
46,892 KB
testcase_28 AC 150 ms
47,988 KB
testcase_29 AC 525 ms
65,832 KB
testcase_30 AC 614 ms
62,664 KB
testcase_31 AC 625 ms
65,936 KB
testcase_32 AC 622 ms
66,000 KB
testcase_33 AC 50 ms
36,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<HashSet<Integer>> base = new ArrayList<>();
    static HashMap<Integer, Integer> dp = new HashMap<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        for (int i = 0; i < n; i++) {
            base.add(new HashSet<>());
        }
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                int x = sc.nextInt();
                if (i < j) {
                    dp.put((1 << i) + (1 << j), x);
                    base.get(i).add((1 << i) + (1 << j));
                }
            }
        }
        System.out.println(dfw((1 << n) - 1));
    }
    
    static int dfw(int mask) {
        if (!dp.containsKey(mask)) {
            int max = 0;
            int idx = getIdx(mask);
            for (int x : base.get(idx)) {
                if ((mask & x) != x) {
                    continue;
                }
                max = Math.max(max, dfw(x) + dfw(mask ^ x));
            }
            dp.put(mask, max);
        }
        return dp.get(mask);
    }
    
    static int getIdx(int mask) {
        int idx = 0;
        while (mask > 0) {
            if (mask % 2 == 1) {
                break;
            }
            idx++;
            mask >>= 1;
        }
        return idx;
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0