結果

問題 No.519 アイドルユニット
ユーザー tentententen
提出日時 2023-08-10 16:24:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 2,345 bytes
コンパイル時間 4,122 ms
コンパイル使用メモリ 92,528 KB
実行使用メモリ 105,744 KB
最終ジャッジ日時 2024-11-16 23:32:50
合計ジャッジ時間 6,291 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
105,556 KB
testcase_01 AC 121 ms
105,320 KB
testcase_02 AC 100 ms
56,248 KB
testcase_03 AC 60 ms
38,064 KB
testcase_04 AC 47 ms
37,040 KB
testcase_05 AC 47 ms
36,800 KB
testcase_06 AC 47 ms
36,992 KB
testcase_07 AC 47 ms
36,848 KB
testcase_08 AC 47 ms
37,060 KB
testcase_09 AC 48 ms
37,160 KB
testcase_10 AC 51 ms
37,232 KB
testcase_11 AC 59 ms
37,836 KB
testcase_12 AC 48 ms
37,232 KB
testcase_13 AC 62 ms
38,144 KB
testcase_14 AC 62 ms
38,284 KB
testcase_15 AC 61 ms
38,288 KB
testcase_16 AC 59 ms
38,240 KB
testcase_17 AC 60 ms
37,904 KB
testcase_18 AC 61 ms
38,016 KB
testcase_19 AC 60 ms
38,248 KB
testcase_20 AC 65 ms
37,868 KB
testcase_21 AC 60 ms
38,048 KB
testcase_22 AC 59 ms
38,288 KB
testcase_23 AC 59 ms
38,400 KB
testcase_24 AC 92 ms
42,368 KB
testcase_25 AC 91 ms
42,392 KB
testcase_26 AC 92 ms
42,336 KB
testcase_27 AC 91 ms
42,520 KB
testcase_28 AC 87 ms
42,520 KB
testcase_29 AC 117 ms
105,744 KB
testcase_30 AC 118 ms
105,636 KB
testcase_31 AC 114 ms
105,512 KB
testcase_32 AC 115 ms
105,580 KB
testcase_33 AC 47 ms
36,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] dp;
    static int[][] matrix;
    static int n;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        n = sc.nextInt();
        matrix = new int[n][n];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                matrix[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 x) {
        if (dp[x] < 0) {
            for (int i = 0; i < n; i++) {
                if ((x & (1 << i)) == 0) {
                    continue;
                }
                for (int j = i + 1; j < n; j++) {
                    if ((x & (1 << j)) == 0) {
                        continue;
                    }
                    dp[x] = Math.max(dp[x], dfw(x - (1 << i) ^ (1 << j)) + matrix[i][j]);
                }
                break;
            }
        }
        return dp[x];
    }
    
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0