結果

問題 No.519 アイドルユニット
ユーザー 37zigen37zigen
提出日時 2017-05-29 01:47:10
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 914 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 77,980 KB
実行使用メモリ 126,128 KB
最終ジャッジ日時 2024-09-21 16:09:39
合計ジャッジ時間 17,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 433 ms
60,212 KB
testcase_03 AC 195 ms
43,196 KB
testcase_04 AC 143 ms
41,520 KB
testcase_05 AC 139 ms
41,188 KB
testcase_06 AC 153 ms
41,352 KB
testcase_07 AC 147 ms
41,848 KB
testcase_08 AC 155 ms
41,744 KB
testcase_09 AC 164 ms
41,748 KB
testcase_10 AC 172 ms
41,840 KB
testcase_11 AC 193 ms
42,732 KB
testcase_12 AC 140 ms
41,284 KB
testcase_13 AC 194 ms
42,816 KB
testcase_14 AC 190 ms
42,896 KB
testcase_15 AC 194 ms
43,024 KB
testcase_16 AC 191 ms
42,912 KB
testcase_17 AC 190 ms
42,952 KB
testcase_18 AC 193 ms
43,128 KB
testcase_19 AC 193 ms
43,236 KB
testcase_20 AC 197 ms
42,972 KB
testcase_21 AC 191 ms
42,824 KB
testcase_22 AC 205 ms
43,360 KB
testcase_23 AC 193 ms
43,028 KB
testcase_24 AC 257 ms
46,200 KB
testcase_25 AC 262 ms
45,916 KB
testcase_26 AC 263 ms
46,196 KB
testcase_27 AC 262 ms
45,912 KB
testcase_28 AC 258 ms
45,936 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 139 ms
41,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[][] f = new int[n][n];
		for (int i = 0; i < n; ++i) {
			for (int j = 0; j < n; ++j) {
				f[i][j] = sc.nextInt();
			}
		}

		int[] g = new int[1 << n];
		Arrays.fill(g, -Integer.MAX_VALUE / 16);
		g[0] = 0;
		for (int s = 0; s < (1 << n); ++s) {
			if (Integer.bitCount(s) % 2 != 0) {
				continue;
			}
			int o = Integer.numberOfTrailingZeros(~s);
			for (int i = o + 1; i < n; ++i) {
				if (((1L << i) & s) > 0) {
					continue;
				}
				int ne = s | (1 << i) | (1 << o);
				g[ne] = Math.max(g[ne], g[s] + f[i][o]);
			}
		}

		System.out.println(g[(1 << n) - 1]);
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0