結果
問題 | No.1284 Flip Game |
ユーザー | tonyu0 |
提出日時 | 2020-11-08 10:59:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 989 bytes |
コンパイル時間 | 694 ms |
コンパイル使用メモリ | 81,412 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 15:02:44 |
合計ジャッジ時間 | 1,600 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 8 ms
5,376 KB |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | AC | 4 ms
5,376 KB |
testcase_23 | AC | 8 ms
5,376 KB |
testcase_24 | AC | 9 ms
5,376 KB |
testcase_25 | AC | 9 ms
5,376 KB |
testcase_26 | AC | 8 ms
5,376 KB |
testcase_27 | AC | 9 ms
5,376 KB |
ソースコード
#include <algorithm> #include <iostream> #include <vector> #define rep(i, j, n) for (int i = (j); i < (n); ++i) using namespace std; using ll = long long; constexpr ll INF = 1LL << 60; void chmin(ll& a, ll b) { if (a > b) a = b; } int n, a[10][10], p3[10], state[10]; void get_state(int S) { for (int i = 0; i < n; ++i) { state[i] = S % 3; S /= 3; } } int main() { cin >> n; rep(i, 0, n) rep(j, 0, n) cin >> a[i][j]; p3[0] = 1; rep(i, 0, n + 1) p3[i + 1] = p3[i] * 3; vector<vector<ll>> dp(n, vector<ll>(p3[n], INF)); rep(i, 0, n) dp[i][p3[i]] = 0; rep(S, 0, p3[n]) { get_state(S); rep(from, 0, n) { if (dp[from][S] == INF || state[from] == 0) continue; rep(to, 0, n) { if (from == to || state[to] == 2) continue; chmin(dp[to][S + p3[to]], dp[from][S] + a[from][to]); } } } ll ans = INF; rep(i, 0, n) chmin(ans, min(dp[i][p3[n] - 1], dp[i][p3[n] - 1 - p3[i]])); cout << ans << '\n'; return 0; }