結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー ks2mks2m
提出日時 2021-01-22 22:02:27
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,088 bytes
コンパイル時間 3,148 ms
コンパイル使用メモリ 79,132 KB
実行使用メモリ 59,832 KB
最終ジャッジ日時 2024-06-08 14:56:41
合計ジャッジ時間 20,756 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,412 KB
testcase_01 AC 123 ms
41,388 KB
testcase_02 AC 115 ms
40,096 KB
testcase_03 AC 126 ms
41,540 KB
testcase_04 AC 132 ms
41,264 KB
testcase_05 AC 129 ms
41,272 KB
testcase_06 AC 124 ms
41,100 KB
testcase_07 AC 117 ms
40,436 KB
testcase_08 AC 115 ms
39,984 KB
testcase_09 AC 112 ms
40,016 KB
testcase_10 AC 128 ms
41,420 KB
testcase_11 AC 132 ms
41,512 KB
testcase_12 AC 118 ms
40,388 KB
testcase_13 AC 133 ms
41,504 KB
testcase_14 AC 140 ms
41,360 KB
testcase_15 AC 139 ms
41,432 KB
testcase_16 AC 127 ms
41,564 KB
testcase_17 AC 143 ms
41,936 KB
testcase_18 AC 121 ms
41,272 KB
testcase_19 AC 154 ms
41,324 KB
testcase_20 AC 139 ms
41,824 KB
testcase_21 AC 131 ms
41,624 KB
testcase_22 AC 143 ms
41,972 KB
testcase_23 AC 247 ms
46,732 KB
testcase_24 AC 303 ms
46,624 KB
testcase_25 AC 538 ms
46,596 KB
testcase_26 AC 180 ms
43,200 KB
testcase_27 AC 173 ms
42,564 KB
testcase_28 AC 602 ms
46,952 KB
testcase_29 AC 225 ms
46,628 KB
testcase_30 AC 305 ms
46,476 KB
testcase_31 AC 276 ms
47,188 KB
testcase_32 AC 196 ms
45,748 KB
testcase_33 AC 550 ms
46,900 KB
testcase_34 AC 544 ms
46,800 KB
testcase_35 AC 542 ms
46,860 KB
testcase_36 AC 585 ms
46,968 KB
testcase_37 AC 559 ms
46,816 KB
testcase_38 AC 585 ms
46,840 KB
testcase_39 AC 573 ms
46,888 KB
testcase_40 AC 580 ms
46,640 KB
testcase_41 AC 594 ms
46,824 KB
testcase_42 AC 549 ms
46,864 KB
testcase_43 AC 116 ms
40,164 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
権限があれば一括ダウンロードができます

ソースコード

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