結果
問題 | No.334 門松ゲーム |
ユーザー | odan3240 |
提出日時 | 2016-01-15 23:07:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,920 bytes |
コンパイル時間 | 742 ms |
コンパイル使用メモリ | 94,176 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 19:27:21 |
合計ジャッジ時間 | 3,489 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 233 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 53 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 35 ms
6,944 KB |
testcase_10 | AC | 423 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
ソースコード
#include <algorithm> #include <functional> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <string> #include <sstream> #include <iostream> #include <iomanip> #include <vector> #include <list> #include <stack> #include <queue> #include <map> #include <set> #include <bitset> #include <climits> #define all(c) (c).begin(), (c).end() #define rep(i,n) for(int i=0;i<(n);i++) #define pb(e) push_back(e) #define mp(a, b) make_pair(a, b) #define fr first #define sc second const int INF=100000000; int dx[4]={1,0,-1,0}; int dy[4]={0,1,0,-1}; using namespace std; typedef pair<int ,int > P; typedef long long ll; int N; int K[20]; bool ok(int used, int i,int j,int k) { if(used>>i&1) return false; if(used>>j&1) return false; if(used>>k&1) return false; return true; } bool isKado(int i,int j,int k) { vector<int> vec; vec.pb(K[i]); vec.pb(K[j]); vec.pb(K[k]); sort(all(vec)); return vec[1]==K[i] || vec[1]==K[k]; } string dump_bit(int S) { string ret; while(S) { if(S&1) ret+="1"; else ret += "0"; S>>=1; } return ret; } bool dfs(int used,int a) { bool ret; ret=false; bool f=false; rep(i,N) rep(j,N) rep(k,N) if(i<j && j<k) if(ok(used,i,j,k)) if(isKado(i,j,k)) { if(a%2==1) ret|=!dfs(used|(1<<i)|(1<<j)|(1<<k),a+1); else ret|=dfs(used|(1<<i)|(1<<j)|(1<<k),a+1); f=true; } if(!f) ret=a%2; else if(a) ret=!ret; //cout<<"debug: " <<string(' ',a) << dump_bit(used) << ", "<< a<<": "<<ret<<endl; return ret; } int main() { cin>>N; rep(i,N) cin>>K[i]; rep(i,N) rep(j,N) rep(k,N) if(i<j && j<k) if(isKado(i,j,k)) { int used = (1<<i) | (1<<j) | (1<<k); //printf("%d %d %d\n",i,j,k); if(dfs(used,1)) { printf("%d %d %d\n",i,j,k); return 0; } } cout<<"-1"<<endl; return 0; }