結果

問題 No.334 門松ゲーム
ユーザー roarisroaris
提出日時 2019-12-19 23:24:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 76,576 KB
最終ジャッジ日時 2024-07-07 02:06:51
合計ジャッジ時間 2,029 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,852 KB
testcase_01 AC 31 ms
53,728 KB
testcase_02 AC 73 ms
76,112 KB
testcase_03 AC 35 ms
52,992 KB
testcase_04 AC 34 ms
52,572 KB
testcase_05 AC 49 ms
65,548 KB
testcase_06 AC 60 ms
72,740 KB
testcase_07 AC 65 ms
74,116 KB
testcase_08 AC 66 ms
74,456 KB
testcase_09 AC 72 ms
76,220 KB
testcase_10 AC 73 ms
76,476 KB
testcase_11 AC 77 ms
76,544 KB
testcase_12 AC 78 ms
76,064 KB
testcase_13 AC 73 ms
76,576 KB
testcase_14 AC 73 ms
76,416 KB
testcase_15 AC 70 ms
76,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

N = int(input())
K = list(map(int, input().split()))
dp = [False]*(1<<N)

for S in range((1<<N)-1, -1, -1):
    idx = []
    
    for i in range(N):
        if not (S>>i)&1:
            idx.append(i)

    for a, b, c in combinations(idx, 3):
        if (K[a]<K[b] and K[b]>K[c]) or (K[a]>K[b] and K[b]<K[c]):
            S_ = S
            S_ |= 1<<a
            S_ |= 1<<b
            S_ |= 1<<c
            dp[S] |= not dp[S_]
    
for a, b, c in combinations(range(N), 3):
    S = 0
    S |= 1<<a
    S |= 1<<b
    S |= 1<<c
    
    if ((K[a]<K[b] and K[b]>K[c]) or (K[a]>K[b] and K[b]<K[c])) and not dp[S]:
        print(a, b, c)
        exit()
    
print(-1)
0