結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー tentententen
提出日時 2024-07-03 15:13:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,365 bytes
コンパイル時間 3,339 ms
コンパイル使用メモリ 91,136 KB
実行使用メモリ 56,592 KB
最終ジャッジ日時 2024-07-03 15:14:02
合計ジャッジ時間 10,953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
51,032 KB
testcase_01 AC 66 ms
50,932 KB
testcase_02 AC 65 ms
51,012 KB
testcase_03 AC 65 ms
50,892 KB
testcase_04 AC 66 ms
50,716 KB
testcase_05 AC 64 ms
50,664 KB
testcase_06 AC 67 ms
51,172 KB
testcase_07 AC 66 ms
51,048 KB
testcase_08 AC 71 ms
51,044 KB
testcase_09 AC 67 ms
51,068 KB
testcase_10 AC 67 ms
51,004 KB
testcase_11 AC 68 ms
50,732 KB
testcase_12 AC 65 ms
51,048 KB
testcase_13 AC 67 ms
51,048 KB
testcase_14 AC 73 ms
51,280 KB
testcase_15 AC 74 ms
50,972 KB
testcase_16 AC 70 ms
51,196 KB
testcase_17 AC 70 ms
50,776 KB
testcase_18 AC 69 ms
50,896 KB
testcase_19 AC 68 ms
50,944 KB
testcase_20 AC 66 ms
51,168 KB
testcase_21 AC 70 ms
51,360 KB
testcase_22 AC 67 ms
51,280 KB
testcase_23 AC 101 ms
52,288 KB
testcase_24 AC 111 ms
52,272 KB
testcase_25 AC 121 ms
53,836 KB
testcase_26 AC 71 ms
50,944 KB
testcase_27 AC 69 ms
50,908 KB
testcase_28 AC 133 ms
54,380 KB
testcase_29 AC 85 ms
51,656 KB
testcase_30 AC 98 ms
52,172 KB
testcase_31 AC 97 ms
52,132 KB
testcase_32 AC 74 ms
50,908 KB
testcase_33 AC 115 ms
54,224 KB
testcase_34 AC 119 ms
54,252 KB
testcase_35 AC 141 ms
54,388 KB
testcase_36 AC 121 ms
54,080 KB
testcase_37 AC 122 ms
54,072 KB
testcase_38 AC 142 ms
54,352 KB
testcase_39 AC 115 ms
54,160 KB
testcase_40 AC 122 ms
53,872 KB
testcase_41 AC 124 ms
54,220 KB
testcase_42 AC 130 ms
54,148 KB
testcase_43 AC 67 ms
51,260 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        int[][] add = new int[n][n];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                add[i][j] = sc.nextInt();
            }
        }
        long[] dp = new long[1 << n];
        long max = 0;
        int mask = 0;
        for (int i = 1; i < (1 << n); i++) {
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                dp[i] = dp[i ^ (1 << j)] + values[j];
                for (int k = j + 1; k < n; k++) {
                    if ((i & (1 << k)) > 0) {
                        dp[i] += add[j][k];
                    }
                }
                break;
            }
            if (max < dp[i]) {
                max = dp[i];
                mask = i;
            }
        }
        List<Integer> ans = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            if ((mask & (1 << i)) > 0) {
                ans.add(i + 1);
            }
        }
        System.out.println(max);
        System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining(" ")));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0