結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー 👑 rin204rin204
提出日時 2022-01-18 18:34:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,308 KB
最終ジャッジ日時 2024-11-23 13:25:04
合計ジャッジ時間 4,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 343 ms
79,612 KB
testcase_03 AC 226 ms
77,996 KB
testcase_04 AC 268 ms
78,208 KB
testcase_05 AC 167 ms
108,160 KB
testcase_06 AC 165 ms
107,904 KB
testcase_07 AC 143 ms
108,308 KB
testcase_08 AC 176 ms
108,160 KB
testcase_09 AC 190 ms
105,984 KB
testcase_10 AC 191 ms
106,164 KB
testcase_11 AC 194 ms
106,240 KB
testcase_12 AC 196 ms
106,268 KB
testcase_13 AC 194 ms
105,856 KB
testcase_14 AC 193 ms
105,980 KB
testcase_15 AC 193 ms
106,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def kado(a, b, c):
    if len(set((a, b, c))) != 3:
        return False
    return b in [max(a, b, c), min(a, b, c)]

def solve():
    n = int(input())
    A = list(map(int, input().split()))
    ans = 0
    for _ in range(3):
        dp = [0] * (n + 1)
        for i in range(3, n + 1):
            a, b, c = A[i - 3:i]
            dp[i] = dp[i - 1]
            if kado(a, b, c):
                dp[i] = max(dp[i], dp[i - 3] + a)
        ans = max(ans, dp[-1])
        A = A[1:] + A[:1]
    print(ans)
    
for _ in range(int(input())):
    solve()
0