結果
問題 | No.334 門松ゲーム |
ユーザー | face4 |
提出日時 | 2018-08-15 19:19:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 1,064 bytes |
コンパイル時間 | 569 ms |
コンパイル使用メモリ | 66,160 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 09:29:07 |
合計ジャッジ時間 | 1,170 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 3 ms
6,940 KB |
ソースコード
#include<iostream> using namespace std; int n; int ansi = -1, ansj = -1, ansk = -1; int a[20]; bool dfs(int bitmask){ for(int i = 0; i < n-2; i++){ for(int j = i+1; j < n-1; j++){ for(int k = j+1; k < n; k++){ // bitmask状況下においてi, j, kを選択できる bool x = ~bitmask&(1<<i) && ~bitmask&(1<<j) && ~bitmask&(1<<k); // i, j, kが門松列を成す bool y = x && (a[i]-a[j])*(a[k]-a[j]) > 0; // 必勝 bool z = y && !dfs(bitmask | (1<<i) | (1<<j) | (1<<k)); if(z){ ansi = i, ansj = j, ansk = k; return true; } } } } // bitmask状況下において新しく門松列を作ることが出来ない return false; } int main(){ cin >> n; for(int i = 0; i < n; i++) cin >> a[i]; if(dfs(0)) cout << ansi << " " << ansj << " " << ansk << endl; else cout << -1 << endl; return 0; }