結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー roarisroaris
提出日時 2021-03-02 16:02:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 106,924 KB
最終ジャッジ日時 2024-10-03 01:48:42
合計ジャッジ時間 4,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,056 KB
testcase_01 AC 41 ms
54,860 KB
testcase_02 AC 428 ms
83,940 KB
testcase_03 AC 161 ms
78,732 KB
testcase_04 AC 228 ms
78,876 KB
testcase_05 AC 171 ms
106,624 KB
testcase_06 AC 172 ms
106,924 KB
testcase_07 AC 140 ms
106,728 KB
testcase_08 AC 185 ms
106,424 KB
testcase_09 AC 234 ms
105,708 KB
testcase_10 AC 210 ms
106,020 KB
testcase_11 AC 211 ms
105,560 KB
testcase_12 AC 207 ms
105,476 KB
testcase_13 AC 208 ms
105,376 KB
testcase_14 AC 215 ms
105,976 KB
testcase_15 AC 233 ms
105,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def calc(A):
    dp = [0]*(N+1)
    
    for i in range(2, N):
        dp[i+1] = dp[i]
        
        if len({A[i-2], A[i-1], A[i]})==3 and A[i-1] in [min(A[i-2], A[i-1], A[i]), max(A[i-2], A[i-1], A[i])]:
            dp[i+1] = max(dp[i+1], dp[i-2]+A[i-2])
    
    return dp[N]

for _ in range(int(input())):
    N = int(input())
    A = list(map(int, input().split()))
    ans = calc(A)
    A = deque(A)
    A.append(A.popleft())
    ans = max(ans, calc(list(A)))
    A.append(A.popleft())
    ans = max(ans, calc(list(A)))
    print(ans)
0