結果
問題 | No.334 門松ゲーム |
ユーザー | femto |
提出日時 | 2016-08-19 20:48:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,144 bytes |
コンパイル時間 | 794 ms |
コンパイル使用メモリ | 82,172 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 18:36:44 |
合計ジャッジ時間 | 1,512 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 3 ms
5,248 KB |
ソースコード
#include <iostream> #include <fstream> #include <vector> #include <cstring> #include <string> #include <algorithm> #include <iomanip> using namespace std; int N; int K[12]; int dp[1 << 12]; bool kadomatsu(int a, int b, int c) { if(a == b || b == c || c == a) return false; return b < a && b < c || b > a && b > c; } int f(int rem, vector<int>& move) { if(dp[rem] != 0) return dp[rem]; dp[rem] = -1; for(int i = 0; i < N; i++) { if(rem >> i & 1) continue; for(int j = i + 1; j < N; j++) { if(rem >> j & 1) continue; for(int k = j + 1; k < N; k++) { if(rem >> k & 1) continue; if(kadomatsu(K[i], K[j], K[k])) { vector<int> m(3, 100); int res = -f(rem ^ (1 << i) ^ (1 << j) ^ (1 << k), m); if(res == 1) { vector<int> mm({ i, j, k }); move = min(move, mm); dp[rem] = 1; } } } } } return dp[rem]; } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> N; for(int i = 0; i < N; i++) { cin >> K[i]; } vector<int> m(3, 100); if(f(0, m) == 1) { for(int i = 0; i < 3; i++) { cout << m[i] << " "; } cout << endl; } else { cout << -1 << endl; } }