結果

問題 No.334 門松ゲーム
ユーザー FromBooskaFromBooska
提出日時 2023-04-12 12:40:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,255 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-10-08 10:54:26
合計ジャッジ時間 1,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 92 ms
76,160 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 80 ms
76,032 KB
testcase_07 AC 92 ms
76,288 KB
testcase_08 AC 64 ms
68,096 KB
testcase_09 AC 69 ms
70,912 KB
testcase_10 AC 100 ms
76,160 KB
testcase_11 AC 72 ms
72,704 KB
testcase_12 AC 44 ms
59,264 KB
testcase_13 AC 41 ms
57,472 KB
testcase_14 AC 69 ms
70,784 KB
testcase_15 AC 62 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# このdfsの実装は難しい

N = int(input())
K = list(map(int, input().split()))

def dfs(LIST):
    # LISTの盤面で手番の人が勝つなら勝つ手、負けるなら0を返す
    L = len(LIST)
    
    for a in range(L):
        for b in range(a+1, L):
            for c in range(b+1, L):
                hand = [LIST[a], LIST[b], LIST[c]]
                if len(set(hand)) < 3:
                    # 同じ数があれば門松列にならない
                    # ここでreturn 0はダメだ、abcの取り方が悪いだけがある
                    continue
                if max(hand) == hand[1] or min(hand) == hand[1]:
                    new_LIST = []
                    for l in range(L):
                        if l != a and l != b and l != c:
                            new_LIST.append(LIST[l])
                    if dfs(new_LIST) == 0:
                        return (a, b, c)
    # 次の手番が負けるという場合がない=今の手番が負ける
    # 次の手番が負ける場合があればここに来ない
    # ここまで来るということは1回も勝ち手にならなかった=負け
    return 0
                
result = dfs(K)
if result == 0:
    print(-1)
else:
    print(*result)
0