結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー convexineqconvexineq
提出日時 2021-01-30 08:51:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,200 KB
最終ジャッジ日時 2024-06-27 20:12:17
合計ジャッジ時間 4,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 496 ms
81,288 KB
testcase_03 AC 227 ms
78,268 KB
testcase_04 AC 282 ms
78,672 KB
testcase_05 AC 169 ms
115,072 KB
testcase_06 AC 164 ms
114,944 KB
testcase_07 AC 144 ms
114,688 KB
testcase_08 AC 175 ms
115,200 KB
testcase_09 AC 212 ms
112,256 KB
testcase_10 AC 211 ms
112,896 KB
testcase_11 AC 205 ms
112,256 KB
testcase_12 AC 202 ms
112,512 KB
testcase_13 AC 204 ms
112,000 KB
testcase_14 AC 202 ms
111,872 KB
testcase_15 AC 201 ms
112,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_kadomatsu(a,b,c):
    if a==b or b==c or a==c or a+b+c-max(a,b,c)-min(a,b,c)==b:
        return False
    return True

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)
0