結果
問題 | No.334 門松ゲーム |
ユーザー | nyakagawan |
提出日時 | 2016-01-28 00:15:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 2,048 bytes |
コンパイル時間 | 631 ms |
コンパイル使用メモリ | 60,420 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 17:44:36 |
合計ジャッジ時間 | 1,338 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:74:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 74 | scanf("%d", &K[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
// No334.cpp : Defines the entry point for the console application. // #include <assert.h> #include <cstdio> #include <cstdlib> #include <cstring> #include <iostream> #include <string> #include <algorithm> #include <vector> #include <climits> using namespace std; typedef unsigned char uchar; typedef unsigned int uint; typedef long long ll; typedef unsigned long long ull; #define kArraySize 12 int K[kArraySize]; int N = 0; bool kado(int a, int b, int c) { if (a == b || b == c || a == c) return false; return (b < a && b < c) || (b > a && b > c); } bool recurse(int count) { //bool turnD = (count % 2)==0; bool noKado = true; bool win = false; for (int k1 = 0; k1 < N - 2; k1++) { if (K[k1] == 0) { continue; } for (int k2 = k1 + 1; k2 < N - 1; k2++) { if (K[k2] == 0) { continue; } for (int k3 = k2 + 1; k3 < N; k3++) { if (K[k3] == 0) { continue; } if (kado(K[k1], K[k2], K[k3])) { noKado = false; //printf("%d,%d,%d\n", k1, k2, k3); auto bk1 = K[k1]; auto bk2 = K[k2]; auto bk3 = K[k3]; K[k1] = K[k2] = K[k3] = 0; auto result = recurse(count + 1); K[k1] = bk1; K[k2] = bk2; K[k3] = bk3; if (!result) { win = true; } } } } } return noKado ? false : win; } int main() { cin >> N; for (int i = 0; i < N; i++) { scanf("%d", &K[i]); } bool found = false; int ik[3]; for (int k1 = 0; k1 < N - 2; k1++) { for (int k2 = k1 + 1; k2 < N - 1; k2++) { for (int k3 = k2 + 1; k3 < N; k3++) { if (kado(K[k1], K[k2], K[k3])) { //printf("%d,%d,%d\n", k1, k2, k3); auto bk1 = K[k1]; auto bk2 = K[k2]; auto bk3 = K[k3]; K[k1] = K[k2] = K[k3] = 0; if(!recurse(1)) { ik[0] = k1; ik[1] = k2; ik[2] = k3; //printf("%d : %d,%d,%d\n", count, k1, k2, k3); printf("%d %d %d\n", ik[0], ik[1], ik[2]); goto _ExitLoop; } K[k1] = bk1; K[k2] = bk2; K[k3] = bk3; } } } } cout << -1 << endl; _ExitLoop: return 0; }