結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー lloyzlloyz
提出日時 2022-06-02 21:56:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 111,488 KB
最終ジャッジ日時 2024-09-21 02:09:27
合計ジャッジ時間 3,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 208 ms
77,440 KB
testcase_03 AC 159 ms
77,724 KB
testcase_04 AC 164 ms
77,056 KB
testcase_05 AC 165 ms
111,232 KB
testcase_06 AC 158 ms
111,232 KB
testcase_07 AC 136 ms
111,232 KB
testcase_08 AC 167 ms
111,488 KB
testcase_09 AC 187 ms
109,184 KB
testcase_10 AC 187 ms
109,568 KB
testcase_11 AC 186 ms
109,312 KB
testcase_12 AC 185 ms
109,696 KB
testcase_13 AC 186 ms
109,440 KB
testcase_14 AC 183 ms
109,696 KB
testcase_15 AC 187 ms
109,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    A = list(map(int, input().split()))
    A += A
    ans = 0
    for f in range(3):
        DP = [0 for _ in range(n + 1)]
        for i in range(3, n + 1):
            if len(set(A[f + i - 3:f + i])) < 3:
                DP[i] = DP[i - 1]
            else:
                if A[f + i - 3] < A[f + i - 2] > A[f + i - 1] or A[f + i - 3] > A[f + i - 2] < A[f + i - 1]:
                    DP[i] = max(DP[i - 1], DP[i - 3] + A[f + i - 3])
                else:
                    DP[i] = DP[i - 1]
        ans = max(ans, DP[n])
    print(ans)
0