結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー ks2mks2m
提出日時 2021-01-22 22:03:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 1,089 bytes
コンパイル時間 2,689 ms
コンパイル使用メモリ 79,208 KB
実行使用メモリ 47,028 KB
最終ジャッジ日時 2024-06-08 14:58:44
合計ジャッジ時間 17,957 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
39,752 KB
testcase_01 AC 110 ms
40,912 KB
testcase_02 AC 96 ms
39,924 KB
testcase_03 AC 106 ms
40,944 KB
testcase_04 AC 103 ms
39,948 KB
testcase_05 AC 108 ms
41,040 KB
testcase_06 AC 107 ms
41,036 KB
testcase_07 AC 108 ms
40,896 KB
testcase_08 AC 106 ms
40,412 KB
testcase_09 AC 118 ms
41,032 KB
testcase_10 AC 110 ms
40,092 KB
testcase_11 AC 105 ms
40,824 KB
testcase_12 AC 107 ms
40,848 KB
testcase_13 AC 112 ms
41,076 KB
testcase_14 AC 114 ms
41,320 KB
testcase_15 AC 127 ms
41,500 KB
testcase_16 AC 121 ms
40,240 KB
testcase_17 AC 128 ms
41,532 KB
testcase_18 AC 114 ms
40,636 KB
testcase_19 AC 120 ms
40,900 KB
testcase_20 AC 114 ms
41,092 KB
testcase_21 AC 102 ms
40,516 KB
testcase_22 AC 121 ms
41,248 KB
testcase_23 AC 239 ms
46,404 KB
testcase_24 AC 297 ms
46,468 KB
testcase_25 AC 458 ms
46,452 KB
testcase_26 AC 150 ms
42,808 KB
testcase_27 AC 148 ms
42,084 KB
testcase_28 AC 513 ms
46,540 KB
testcase_29 AC 190 ms
45,696 KB
testcase_30 AC 252 ms
46,228 KB
testcase_31 AC 252 ms
46,496 KB
testcase_32 AC 172 ms
45,044 KB
testcase_33 AC 514 ms
46,692 KB
testcase_34 AC 524 ms
46,816 KB
testcase_35 AC 489 ms
46,616 KB
testcase_36 AC 545 ms
47,028 KB
testcase_37 AC 523 ms
46,512 KB
testcase_38 AC 495 ms
46,388 KB
testcase_39 AC 521 ms
46,376 KB
testcase_40 AC 524 ms
46,644 KB
testcase_41 AC 536 ms
46,672 KB
testcase_42 AC 513 ms
46,664 KB
testcase_43 AC 107 ms
41,036 KB
testcase_44 AC 508 ms
46,548 KB
testcase_45 AC 110 ms
40,932 KB
testcase_46 AC 499 ms
46,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		int[][] b = new int[n][n];
		for (int i = 0; i < n; i++) {
			for (int j = 0; j < n; j++) {
				b[i][j] = sc.nextInt();
			}
		}
		sc.close();

		long ans = 0;
		Set<Integer> as = new HashSet<>();
		int end = 1 << n;
		for (int i = 0; i < end; i++) {
			long val = 0;
			Set<Integer> set = new HashSet<>();
			for (int j = 0; j < n; j++) {
				if ((i >> j & 1) == 1) {
					val += a[j];
					for (int j2 = 0; j2 < j; j2++) {
						if (set.contains(j2)) {
							val += b[j][j2];
						}
					}
					set.add(j);
				}
			}
			if (val >= ans) {
				ans = val;
				as = set;
			}
		}
		System.out.println(ans);
		StringBuilder sb = new StringBuilder();
		for (int i : as) {
			sb.append(i + 1).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}
}
0