結果
問題 | No.334 門松ゲーム |
ユーザー | tnakao0123 |
提出日時 | 2016-04-06 14:27:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 2,010 bytes |
コンパイル時間 | 699 ms |
コンパイル使用メモリ | 85,240 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-10-04 02:14:41 |
合計ジャッジ時間 | 1,456 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 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 | 2 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 2 ms
6,816 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 334.cc: No.334 門松ゲーム - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 12; const int NBITS = 1 << MAX_N; typedef long long ll; const int INF = 1 << 30; const ll LINF = 1LL << 60; /* typedef */ typedef vector<int> vi; typedef queue<int> qi; typedef pair<int,int> pii; /* global variables */ int ks[MAX_N], dp[NBITS]; /* subroutines */ /* main */ int main() { int n; cin >> n; for (int i = 0; i < n; i++) cin >> ks[i]; int nbits = 1 << n; //for (int bits = 0; bits < nbits; bits++) dp[bits] = -1; for (int bits = 0; bits < nbits; bits++) { bool win = false; for (int i = 0; ! win && i < n; i++) { int bi = 1 << i; if (! (bits & bi)) continue; for (int j = i + 1; ! win && j < n; j++) { int bj = 1 << j; if (! (bits & bj)) continue; for (int k = j + 1; ! win && k < n; k++) { int bk = 1 << k; if (! (bits & bk)) continue; if (ks[i] != ks[k] && ((ks[i] < ks[j] && ks[j] > ks[k]) || (ks[i] > ks[j] && ks[j] < ks[k])) && dp[bits ^ bi ^ bj ^ bk] == 1) win = true; } } } dp[bits] = win ? 0 : 1; //printf("dp[%x]=%d\n", bits, dp[bits]); } if (dp[nbits - 1] == 1) puts("-1"); else { bool win = false; for (int i = 0; ! win && i < n; i++) for (int j = i + 1; ! win && j < n; j++) for (int k = j + 1; ! win && k < n; k++) { int bi = 1 << i, bj = 1 << j, bk = 1 << k; if (ks[i] != ks[k] && ((ks[i] < ks[j] && ks[j] > ks[k]) || (ks[i] > ks[j] && ks[j] < ks[k])) && dp[(nbits - 1) ^ bi ^ bj ^ bk] == 1) { printf("%d %d %d\n", i, j, k); win = true; } } } return 0; }