結果

問題 No.519 アイドルユニット
ユーザー uafr_csuafr_cs
提出日時 2017-11-08 14:29:18
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 880 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 78,000 KB
実行使用メモリ 151,604 KB
最終ジャッジ日時 2024-11-24 05:54:56
合計ジャッジ時間 26,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 WA -
testcase_04 AC 122 ms
151,560 KB
testcase_05 AC 120 ms
46,452 KB
testcase_06 AC 125 ms
151,500 KB
testcase_07 AC 129 ms
46,856 KB
testcase_08 AC 136 ms
151,560 KB
testcase_09 AC 140 ms
47,068 KB
testcase_10 AC 166 ms
42,116 KB
testcase_11 AC 243 ms
42,900 KB
testcase_12 AC 107 ms
41,156 KB
testcase_13 AC 234 ms
42,576 KB
testcase_14 AC 247 ms
43,080 KB
testcase_15 AC 241 ms
42,940 KB
testcase_16 AC 255 ms
42,932 KB
testcase_17 AC 268 ms
43,108 KB
testcase_18 WA -
testcase_19 AC 232 ms
42,584 KB
testcase_20 AC 231 ms
42,888 KB
testcase_21 AC 239 ms
42,692 KB
testcase_22 AC 238 ms
42,792 KB
testcase_23 AC 241 ms
42,508 KB
testcase_24 AC 668 ms
46,112 KB
testcase_25 AC 676 ms
45,916 KB
testcase_26 AC 658 ms
45,980 KB
testcase_27 AC 665 ms
45,768 KB
testcase_28 WA -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 105 ms
151,604 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++){
			for(int i = 0; i < n; 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