結果

問題 No.519 アイドルユニット
ユーザー uafr_csuafr_cs
提出日時 2017-11-08 14:42:23
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 919 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 76,948 KB
実行使用メモリ 109,716 KB
最終ジャッジ日時 2024-11-24 05:55:39
合計ジャッジ時間 16,426 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 113 ms
40,232 KB
testcase_05 AC 134 ms
41,504 KB
testcase_06 AC 137 ms
41,480 KB
testcase_07 AC 142 ms
41,500 KB
testcase_08 AC 144 ms
41,584 KB
testcase_09 AC 159 ms
41,796 KB
testcase_10 AC 171 ms
41,864 KB
testcase_11 AC 192 ms
42,352 KB
testcase_12 AC 133 ms
41,520 KB
testcase_13 AC 188 ms
42,752 KB
testcase_14 AC 200 ms
43,080 KB
testcase_15 AC 181 ms
42,724 KB
testcase_16 AC 183 ms
43,012 KB
testcase_17 AC 188 ms
42,800 KB
testcase_18 WA -
testcase_19 AC 195 ms
42,772 KB
testcase_20 AC 183 ms
42,732 KB
testcase_21 AC 185 ms
43,016 KB
testcase_22 AC 189 ms
42,748 KB
testcase_23 AC 185 ms
42,880 KB
testcase_24 AC 227 ms
46,256 KB
testcase_25 AC 227 ms
45,988 KB
testcase_26 AC 254 ms
46,388 KB
testcase_27 AC 228 ms
46,024 KB
testcase_28 WA -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 164 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int n = sc.nextInt();
		
		final int max = 1000;
		int[][] adj = new int[n][n];
		for(int i = 0; i < n; i++){
			for(int j = 0; j < n; j++){
				adj[i][j] = max - sc.nextInt();
			}
		}
		
		int[] DP = new int[1 << n];
		Arrays.fill(DP, Integer.MAX_VALUE / 2 - 1);
		DP[0] = 0;
		
		for(int bit = 0; bit < (1 << n); bit++){
			//System.out.println(bit);
			int i = 0;
			for (; (bit & (1 << i)) != 0; ++i);
			
			final int fst = 1 << i;
			for(int j = i + 1; j < n; j++){
				final int snd = 1 << j;
				
				final int next_bit = bit | fst | snd;
				DP[next_bit] = Math.min(DP[next_bit], DP[bit] + adj[i][j]);
			}
		}
		
		System.out.println(max * (n / 2) - DP[(1 << n) - 1]);
	}
}
0