結果

問題 No.519 アイドルユニット
ユーザー uafr_csuafr_cs
提出日時 2017-11-08 15:35:22
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,185 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 78,744 KB
実行使用メモリ 152,724 KB
最終ジャッジ日時 2024-11-24 05:57:55
合計ジャッジ時間 23,567 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 970 ms
80,800 KB
testcase_03 AC 202 ms
152,724 KB
testcase_04 AC 120 ms
46,364 KB
testcase_05 AC 121 ms
151,180 KB
testcase_06 AC 123 ms
46,748 KB
testcase_07 AC 125 ms
151,160 KB
testcase_08 AC 132 ms
46,636 KB
testcase_09 AC 146 ms
41,528 KB
testcase_10 AC 150 ms
41,856 KB
testcase_11 AC 193 ms
42,848 KB
testcase_12 AC 115 ms
41,072 KB
testcase_13 AC 199 ms
42,908 KB
testcase_14 AC 215 ms
42,620 KB
testcase_15 AC 202 ms
42,588 KB
testcase_16 AC 196 ms
42,716 KB
testcase_17 AC 197 ms
42,816 KB
testcase_18 AC 221 ms
42,900 KB
testcase_19 AC 197 ms
42,932 KB
testcase_20 AC 200 ms
42,608 KB
testcase_21 AC 195 ms
42,548 KB
testcase_22 AC 198 ms
42,664 KB
testcase_23 AC 207 ms
42,568 KB
testcase_24 AC 363 ms
45,888 KB
testcase_25 AC 385 ms
46,048 KB
testcase_26 AC 367 ms
46,004 KB
testcase_27 AC 359 ms
46,116 KB
testcase_28 AC 380 ms
45,876 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 124 ms
151,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static int solve_DP(int n, int[][] adj){
		int[] DP = new int[1 << n];
		final int INF = Integer.MAX_VALUE / 2 - 1;
		Arrays.fill(DP, INF);
		DP[0] = 0;
		
		for(int bit = 0; bit < (1 << n); bit++){
			if(DP[bit] >= INF){ continue; }
			
			for(int i = 0; i < n; i++){
				if((bit & (1 << i)) != 0) { continue; }
				
				final int fst = 1 << i;
				for(int j = i + 1; j < n; j++){
					if((bit & (1 << j)) != 0){ continue; }
					
					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]);
				}
			}
		}
		
		return DP[(1 << n) - 1];
	}
	
	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();
			}
		}
		
		final int solve = solve_DP(n, adj);
		
		System.out.println(max * (n / 2) - solve);
	}
}
0