結果

問題 No.334 門松ゲーム
ユーザー lloyzlloyz
提出日時 2023-02-25 22:00:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 1,099 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-09-13 16:47:22
合計ジャッジ時間 2,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,424 KB
testcase_01 AC 39 ms
53,500 KB
testcase_02 AC 110 ms
76,376 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 67 ms
69,504 KB
testcase_06 AC 68 ms
69,632 KB
testcase_07 AC 78 ms
74,752 KB
testcase_08 AC 75 ms
72,704 KB
testcase_09 AC 107 ms
76,480 KB
testcase_10 AC 104 ms
76,416 KB
testcase_11 AC 101 ms
76,320 KB
testcase_12 AC 101 ms
76,672 KB
testcase_13 AC 110 ms
76,312 KB
testcase_14 AC 100 ms
76,288 KB
testcase_15 AC 101 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

# 遷移先がある場合は1としている
DP = [0 for _ in range(1 << n)]
for bit in range(1 << n):
    if DP[bit]:
        continue
    for i in range(n):
        if (bit >> i) & 1:
            continue
        for j in range(i + 1, n):
            if (bit >> j) & 1:
                continue
            for k in range(j + 1, n):
                if (bit >> k) & 1:
                    continue
                if A[i] != A[k] and (A[i] > A[j] < A[k] or A[i] < A[j] > A[k]):
                    nbit = bit
                    nbit |= (1 << i)
                    nbit |= (1 << j)
                    nbit |= (1 << k)
                    DP[nbit] = 1

for i in range(n):
    for j in range(i + 1, n):
        for k in range(j + 1, n):
            if A[i] != A[k] and (A[i] > A[j] < A[k] or A[i] < A[j] > A[k]):
                bit = (1 << n) - 1
                bit ^= 1 << i
                bit ^= 1 << j
                bit ^= 1 << k
                if DP[bit] == 0:
                    print(i, j, k)
                    exit()
print(-1)
0