結果

問題 No.334 門松ゲーム
ユーザー flippergoflippergo
提出日時 2024-10-30 08:32:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 76,908 KB
最終ジャッジ日時 2024-10-30 08:32:10
合計ジャッジ時間 2,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,400 KB
testcase_01 AC 38 ms
53,496 KB
testcase_02 AC 70 ms
71,712 KB
testcase_03 AC 37 ms
53,108 KB
testcase_04 AC 37 ms
52,596 KB
testcase_05 AC 37 ms
53,200 KB
testcase_06 AC 54 ms
64,064 KB
testcase_07 AC 51 ms
63,948 KB
testcase_08 AC 49 ms
64,256 KB
testcase_09 AC 54 ms
65,220 KB
testcase_10 AC 88 ms
76,908 KB
testcase_11 AC 53 ms
63,276 KB
testcase_12 AC 39 ms
53,832 KB
testcase_13 AC 38 ms
53,500 KB
testcase_14 AC 51 ms
63,840 KB
testcase_15 AC 41 ms
54,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
N = int(input())
A = list(map(int,input().split()))
B = list(range(N))
def dfs(i,v):
    global B
    for u in combinations(B,3):
        x = A[u[0]]
        y = A[u[1]]
        z = A[u[2]]
        if x!=y and y!=z and z!=x and (y==max(x,y,z) or y==min(x,y,z)):
            if len(B)-3<3:
                return i,u
            B.remove(u[0])
            B.remove(u[1])
            B.remove(u[2])
            i1,u1 = dfs(1-i,u)
            if i1==i:
                B += u
                B = sorted(B)
                return i,u
            B += u
            B = sorted(B)
        else:continue
    return 1-i,v
i,u = dfs(0,[])
if i==0:
    print(*u)
else:
    print(-1)
0