結果

問題 No.1284 Flip Game
ユーザー 👑 NachiaNachia
提出日時 2020-11-06 21:35:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 1,021 bytes
コンパイル時間 1,759 ms
コンパイル使用メモリ 168,912 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-07-22 12:21:32
合計ジャッジ時間 3,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 19 ms
8,064 KB
testcase_18 AC 22 ms
7,936 KB
testcase_19 AC 81 ms
21,760 KB
testcase_20 AC 20 ms
8,192 KB
testcase_21 AC 20 ms
8,064 KB
testcase_22 AC 21 ms
8,192 KB
testcase_23 AC 82 ms
21,888 KB
testcase_24 AC 82 ms
21,888 KB
testcase_25 AC 83 ms
21,764 KB
testcase_26 AC 83 ms
21,820 KB
testcase_27 AC 83 ms
21,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N;
LL C[9][9];
LL dp[1 << 18][9];
int whiten[9];
int flipped[9];
int allwhiten;

int main() {
	cin >> N;
	rep(i, N) rep(j, N) cin >> C[i][j];

	rep(i, 9) whiten[i] = 1 << (i * 2);
	rep(i, 9) flipped[i] = 1 << (i * 2 + 1);
	allwhiten = 0; rep(i, N) allwhiten |= whiten[i];
	const int arrsz = 1 << (N * 2);

	rep(i, arrsz) rep(j, N) dp[i][j] = 1000000000000;
	rep(i, N) dp[1 << (i * 2)][i] = 0;

	LL ans = 1000000000000;

	rep(i, arrsz) rep(j, N) {
		LL d = dp[i][j];
		bool ok = true;
		int newi = i; if (!(i & flipped[j])) { ok = false; newi &= ~whiten[j]; newi |= flipped[j]; }
		rep(to, N) {
			if (newi & whiten[to]) continue;
			if (to == j) continue;
			dp[newi | whiten[to]][to] = min(dp[newi | whiten[to]][to], d + C[j][to]);
			if (((newi | whiten[to]) & allwhiten) == allwhiten) ans = min(ans, dp[newi | whiten[to]][to]);
		}
	}

	cout << ans << endl;

	return 0;
}
0