結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー rlangevinrlangevin
提出日時 2023-01-15 11:46:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 106,752 KB
最終ジャッジ日時 2024-06-08 15:12:53
合計ジャッジ時間 4,430 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 378 ms
81,860 KB
testcase_03 AC 159 ms
77,500 KB
testcase_04 AC 200 ms
78,036 KB
testcase_05 AC 160 ms
106,496 KB
testcase_06 AC 157 ms
106,752 KB
testcase_07 AC 146 ms
106,624 KB
testcase_08 AC 137 ms
106,496 KB
testcase_09 AC 225 ms
105,344 KB
testcase_10 AC 212 ms
105,216 KB
testcase_11 AC 215 ms
104,960 KB
testcase_12 AC 194 ms
105,344 KB
testcase_13 AC 217 ms
105,216 KB
testcase_14 AC 213 ms
105,600 KB
testcase_15 AC 213 ms
105,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def kadomatsu(a, b, c):
    for i in [-1, 1]:
        if a * i < b * i and b * i > c * i and a != c:
            return True
    return False

def calc(A):
    N = len(A)
    inf = 10 ** 18
    dp = [-inf] * (N + 1)
    dp[0] = 0
    for i in range(N):
        if i != N - 1:
            dp[i + 1] = max(dp[i + 1], dp[i])
        if i < N - 2: 
            if kadomatsu(A[i], A[i + 1], A[i + 2]):
                dp[i + 3] = max(dp[i + 3], dp[i] + A[i])
    return max(dp)
    
    

T = int(readline())
for _ in range(T):
    N = int(readline())
    A = list(map(int, readline().split()))
    ans = calc(A)
    a = A.pop(0)
    A.append(a)
    ans = max(ans, calc(A))
    a = A.pop(0)
    A.append(a)
    ans = max(ans, calc(A))
    print(ans)
0