結果

問題 No.1284 Flip Game
ユーザー 37zigen37zigen
提出日時 2020-09-08 14:58:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 1,319 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 79,416 KB
実行使用メモリ 56,444 KB
最終ジャッジ日時 2024-05-07 04:24:52
合計ジャッジ時間 8,218 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
53,928 KB
testcase_01 AC 137 ms
53,888 KB
testcase_02 AC 144 ms
54,600 KB
testcase_03 AC 134 ms
54,020 KB
testcase_04 AC 136 ms
54,052 KB
testcase_05 AC 139 ms
54,292 KB
testcase_06 AC 136 ms
53,912 KB
testcase_07 AC 136 ms
53,924 KB
testcase_08 AC 135 ms
54,180 KB
testcase_09 AC 137 ms
54,036 KB
testcase_10 AC 139 ms
54,652 KB
testcase_11 AC 144 ms
54,224 KB
testcase_12 AC 142 ms
53,920 KB
testcase_13 AC 145 ms
54,008 KB
testcase_14 AC 147 ms
54,236 KB
testcase_15 AC 177 ms
54,264 KB
testcase_16 AC 180 ms
54,152 KB
testcase_17 AC 202 ms
54,088 KB
testcase_18 AC 193 ms
53,924 KB
testcase_19 AC 235 ms
55,980 KB
testcase_20 AC 188 ms
54,172 KB
testcase_21 AC 182 ms
53,968 KB
testcase_22 AC 181 ms
54,264 KB
testcase_23 AC 237 ms
56,396 KB
testcase_24 AC 222 ms
55,980 KB
testcase_25 AC 225 ms
56,072 KB
testcase_26 AC 224 ms
56,348 KB
testcase_27 AC 241 ms
56,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	int[] p3=new int[15];
	{
		p3[0]=1;
		for (int i=1;i<p3.length;++i) p3[i]=3*p3[i-1];
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		assert(2<=N&&N<=9);
		long[][] C=new long[N][N];
		for (int i=0;i<N;++i) {
			for (int j=0;j<N;++j) {
				C[i][j]=sc.nextLong();
				if (i==j) assert(C[i][j]==0);
				else assert(1<=C[i][j]&&C[i][j]<=1e8);
			}
		}
		// 赤, 選ばれたことなし   0
		// 赤, 選ばれたことあり   1
		// 白,             2
		// 全て白にしたい
		long INF=Long.MAX_VALUE/3;
		long[][] dp=new long[p3[N]][N];
		for (int i=0;i<dp.length;++i)
			for (int j=0;j<dp[i].length;++j)
				dp[i][j]=INF;
		for (int i=0;i<N;++i)
			dp[p3[i]][i]=0;
		long ans=INF;
		for (int s=0;s<p3[N];++s) {
			for (int src=0;src<N;++src) {
				for (int dst=0;dst<N;++dst) {
					if (dp[s][src]==INF || s/p3[dst]%3==2 || src==dst) continue;
					int ns=s+p3[dst];
					dp[ns][dst]=Math.min(dp[ns][dst], dp[s][src]+C[src][dst]);
					if (ns==p3[N]-1 || ns+p3[dst]==p3[N]-1) {
						ans=Math.min(ans, dp[ns][dst]);
					}
				}
			}
		}
		System.out.println(ans);
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}
0