結果

問題 No.334 門松ゲーム
ユーザー roarisroaris
提出日時 2019-12-19 23:09:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 76,668 KB
最終ジャッジ日時 2024-07-07 02:01:58
合計ジャッジ時間 1,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,388 KB
testcase_01 AC 34 ms
53,472 KB
testcase_02 AC 69 ms
73,768 KB
testcase_03 AC 34 ms
53,324 KB
testcase_04 AC 34 ms
52,788 KB
testcase_05 AC 34 ms
53,620 KB
testcase_06 AC 47 ms
64,016 KB
testcase_07 AC 55 ms
68,756 KB
testcase_08 AC 54 ms
67,956 KB
testcase_09 AC 52 ms
66,032 KB
testcase_10 AC 77 ms
76,668 KB
testcase_11 AC 52 ms
67,984 KB
testcase_12 AC 74 ms
76,420 KB
testcase_13 AC 60 ms
71,336 KB
testcase_14 AC 49 ms
66,020 KB
testcase_15 AC 64 ms
75,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

def dfs(S):
    if memo[S]!=-1:
        return memo[S]
    
    idx = []
    
    for i in range(N):
        if not (S>>i)&1:
            idx.append(i)

    res = False
    
    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
            res |= not dfs(S_)
    
    memo[S] = res
    
    return res

N = int(input())
K = list(map(int, input().split()))
memo = [-1]*(1<<N)
dfs(0)

for a, b, c in combinations(range(N), 3):
    S = 0
    S |= 1<<a
    S |= 1<<b
    S |= 1<<c
    
    if memo[S]==False:
        print(a, b, c)
        exit()
        
print(-1)
0