結果

問題 No.519 アイドルユニット
ユーザー 37zigen37zigen
提出日時 2017-05-29 01:49:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 244 ms / 1,000 ms
コード長 887 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 77,480 KB
実行使用メモリ 123,456 KB
最終ジャッジ日時 2024-10-03 03:54:30
合計ジャッジ時間 8,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
123,232 KB
testcase_01 AC 235 ms
123,416 KB
testcase_02 AC 183 ms
73,700 KB
testcase_03 AC 145 ms
56,316 KB
testcase_04 AC 100 ms
52,808 KB
testcase_05 AC 109 ms
54,032 KB
testcase_06 AC 118 ms
54,256 KB
testcase_07 AC 120 ms
53,876 KB
testcase_08 AC 129 ms
53,984 KB
testcase_09 AC 126 ms
54,076 KB
testcase_10 AC 125 ms
54,324 KB
testcase_11 AC 143 ms
56,300 KB
testcase_12 AC 113 ms
54,380 KB
testcase_13 AC 152 ms
56,408 KB
testcase_14 AC 146 ms
56,256 KB
testcase_15 AC 149 ms
56,428 KB
testcase_16 AC 149 ms
56,308 KB
testcase_17 AC 169 ms
56,416 KB
testcase_18 AC 155 ms
56,264 KB
testcase_19 AC 147 ms
56,148 KB
testcase_20 AC 155 ms
56,372 KB
testcase_21 AC 159 ms
56,116 KB
testcase_22 AC 149 ms
56,024 KB
testcase_23 AC 161 ms
56,512 KB
testcase_24 AC 161 ms
58,300 KB
testcase_25 AC 179 ms
58,336 KB
testcase_26 AC 151 ms
58,504 KB
testcase_27 AC 184 ms
58,300 KB
testcase_28 AC 181 ms
58,128 KB
testcase_29 AC 235 ms
123,244 KB
testcase_30 AC 235 ms
123,376 KB
testcase_31 AC 227 ms
123,216 KB
testcase_32 AC 244 ms
123,456 KB
testcase_33 AC 114 ms
54,076 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 (g[s] < 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