結果

問題 No.519 アイドルユニット
ユーザー uafr_csuafr_cs
提出日時 2017-11-08 15:37:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 311 ms / 1,000 ms
コード長 1,148 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 78,600 KB
実行使用メモリ 109,716 KB
最終ジャッジ日時 2024-11-24 05:58:15
合計ジャッジ時間 9,958 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
109,432 KB
testcase_01 AC 299 ms
109,476 KB
testcase_02 AC 220 ms
60,120 KB
testcase_03 AC 170 ms
42,644 KB
testcase_04 AC 132 ms
40,888 KB
testcase_05 AC 137 ms
41,132 KB
testcase_06 AC 138 ms
41,200 KB
testcase_07 AC 141 ms
41,260 KB
testcase_08 AC 144 ms
41,140 KB
testcase_09 AC 149 ms
41,848 KB
testcase_10 AC 152 ms
42,204 KB
testcase_11 AC 171 ms
42,776 KB
testcase_12 AC 131 ms
41,236 KB
testcase_13 AC 171 ms
42,512 KB
testcase_14 AC 171 ms
42,744 KB
testcase_15 AC 167 ms
42,560 KB
testcase_16 AC 167 ms
42,844 KB
testcase_17 AC 185 ms
42,700 KB
testcase_18 AC 169 ms
42,556 KB
testcase_19 AC 169 ms
42,612 KB
testcase_20 AC 169 ms
42,612 KB
testcase_21 AC 177 ms
42,456 KB
testcase_22 AC 174 ms
42,828 KB
testcase_23 AC 167 ms
42,776 KB
testcase_24 AC 198 ms
46,000 KB
testcase_25 AC 206 ms
46,208 KB
testcase_26 AC 210 ms
45,792 KB
testcase_27 AC 211 ms
45,796 KB
testcase_28 AC 211 ms
45,556 KB
testcase_29 AC 311 ms
109,716 KB
testcase_30 AC 295 ms
109,616 KB
testcase_31 AC 287 ms
109,552 KB
testcase_32 AC 299 ms
109,656 KB
testcase_33 AC 132 ms
41,356 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; }
			
			int i = 0;
			for(; (bit & (1 << i)) != 0; i++);
			
			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