結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-29 22:51:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 110,912 KB
最終ジャッジ日時 2024-06-27 09:14:20
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 240 ms
77,568 KB
testcase_03 AC 218 ms
77,568 KB
testcase_04 AC 248 ms
77,844 KB
testcase_05 AC 245 ms
110,336 KB
testcase_06 AC 243 ms
110,336 KB
testcase_07 AC 150 ms
110,848 KB
testcase_08 AC 232 ms
110,912 KB
testcase_09 AC 255 ms
108,928 KB
testcase_10 AC 259 ms
109,568 KB
testcase_11 AC 252 ms
109,568 KB
testcase_12 AC 249 ms
109,568 KB
testcase_13 AC 257 ms
108,928 KB
testcase_14 AC 257 ms
109,056 KB
testcase_15 AC 257 ms
109,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    A = list(map(int,input().split()))
    ans = 0
    for j in range(3):
        a = A[j:]+A[:j]
        dp = [0]*(n+5)
        for i in range(n-2):
            dp[i] = max(dp[i],dp[i-1])
            x = a[i:i+3]
            if len(set(x)) == 3 and (min(x) == x[1] or max(x) == x[1]):
                dp[i+3] = max(dp[i+3],dp[i]+a[i])
        ans = max(ans,max(dp))
    print(ans)
0