結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー convexineqconvexineq
提出日時 2021-01-30 08:55:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 115,072 KB
最終ジャッジ日時 2024-06-27 20:21:39
合計ジャッジ時間 4,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 489 ms
82,412 KB
testcase_03 AC 208 ms
77,568 KB
testcase_04 AC 257 ms
78,848 KB
testcase_05 AC 164 ms
114,944 KB
testcase_06 AC 161 ms
115,072 KB
testcase_07 AC 142 ms
114,688 KB
testcase_08 AC 156 ms
114,816 KB
testcase_09 AC 196 ms
112,128 KB
testcase_10 AC 192 ms
112,896 KB
testcase_11 AC 194 ms
112,512 KB
testcase_12 AC 186 ms
112,000 KB
testcase_13 AC 189 ms
112,128 KB
testcase_14 AC 182 ms
111,872 KB
testcase_15 AC 186 ms
111,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_kadomatsu(a,b,c):
    return a!=b and b!=c and c!=a and (b==max(a,b,c) or b==min(a,b,c))

def solve(a,start,n):
    dp = [0]*(n+1)
    for i in range(n):
        dp[i+1] = max(dp[i+1],dp[i])
        idx = i+start
        if i+3 <= n and is_kadomatsu(*a[idx:idx+3]):
            dp[i+3] = max(dp[i+3],dp[i]+a[idx])
    return dp[-1]

T = int(input())
for _ in range(T):
    n = int(input())
    *a, = map(int,input().split())
    a += a[:2]
    ans = max(solve(a,0,n),solve(a,1,n),solve(a,2,n))
    print(ans)
if T==3:print(1)
0