結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー tentententen
提出日時 2024-07-03 15:17:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 2,455 bytes
コンパイル時間 2,680 ms
コンパイル使用メモリ 90,524 KB
実行使用メモリ 56,184 KB
最終ジャッジ日時 2024-07-03 15:17:23
合計ジャッジ時間 11,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
50,796 KB
testcase_01 AC 70 ms
51,104 KB
testcase_02 AC 70 ms
50,608 KB
testcase_03 AC 70 ms
50,952 KB
testcase_04 AC 69 ms
50,976 KB
testcase_05 AC 70 ms
50,836 KB
testcase_06 AC 68 ms
52,764 KB
testcase_07 AC 68 ms
50,836 KB
testcase_08 AC 68 ms
50,544 KB
testcase_09 AC 70 ms
51,116 KB
testcase_10 AC 70 ms
50,912 KB
testcase_11 AC 68 ms
51,032 KB
testcase_12 AC 70 ms
50,540 KB
testcase_13 AC 68 ms
51,000 KB
testcase_14 AC 69 ms
51,012 KB
testcase_15 AC 69 ms
50,776 KB
testcase_16 AC 68 ms
50,788 KB
testcase_17 AC 71 ms
50,964 KB
testcase_18 AC 70 ms
51,192 KB
testcase_19 AC 69 ms
51,224 KB
testcase_20 AC 75 ms
51,216 KB
testcase_21 AC 68 ms
50,512 KB
testcase_22 AC 68 ms
51,040 KB
testcase_23 AC 106 ms
51,680 KB
testcase_24 AC 111 ms
52,220 KB
testcase_25 AC 120 ms
54,116 KB
testcase_26 AC 75 ms
50,964 KB
testcase_27 AC 72 ms
51,388 KB
testcase_28 AC 131 ms
54,192 KB
testcase_29 AC 94 ms
51,272 KB
testcase_30 AC 103 ms
51,988 KB
testcase_31 AC 97 ms
51,652 KB
testcase_32 AC 77 ms
50,944 KB
testcase_33 AC 134 ms
53,648 KB
testcase_34 AC 124 ms
54,372 KB
testcase_35 AC 121 ms
53,592 KB
testcase_36 AC 124 ms
53,884 KB
testcase_37 AC 128 ms
53,520 KB
testcase_38 AC 123 ms
53,736 KB
testcase_39 AC 125 ms
54,296 KB
testcase_40 AC 127 ms
53,560 KB
testcase_41 AC 145 ms
56,184 KB
testcase_42 AC 120 ms
53,844 KB
testcase_43 AC 69 ms
51,196 KB
testcase_44 AC 107 ms
53,844 KB
testcase_45 AC 55 ms
50,440 KB
testcase_46 AC 130 ms
56,168 KB
権限があれば一括ダウンロードができます

ソースコード

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);
        if (max == 0) {
            System.out.println(1);
        } else {
            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