結果

問題 No.334 門松ゲーム
ユーザー gorugo30gorugo30
提出日時 2021-03-20 13:08:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-11-20 22:03:28
合計ジャッジ時間 1,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 74 ms
73,728 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 63 ms
68,224 KB
testcase_07 AC 67 ms
68,992 KB
testcase_08 AC 56 ms
64,384 KB
testcase_09 AC 53 ms
63,872 KB
testcase_10 AC 87 ms
76,288 KB
testcase_11 AC 59 ms
66,176 KB
testcase_12 AC 45 ms
58,752 KB
testcase_13 AC 42 ms
58,368 KB
testcase_14 AC 60 ms
67,328 KB
testcase_15 AC 57 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from itertools import combinations

def solve(unused):
    l = []
    for i in range(N):
        if unused >> i & 1:
            l.append(i)
    if len(l) < 3:
        return [], False
    for C in combinations(l, 3):
        C = list(C)
        a, b, c = K[C[0]], K[C[1]], K[C[2]]
        if a == b or b == c or c == a:
            continue
        if not (b == max(a, b, c) or b == min(a, b, c)):
            continue
        unext = unused
        for i in range(3):
            unext &= ~(1 << C[i])
        ans, can = solve(unext)
        if can == False:
            return C, True
    return [], False

ans, can = solve((1 << N) - 1)
if can:
    print(*ans)
else:
    print(-1)
0