結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー mkawa2mkawa2
提出日時 2021-10-29 14:39:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 962 ms / 2,000 ms
コード長 1,163 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,112 KB
最終ジャッジ日時 2024-04-16 13:22:07
合計ジャッジ時間 9,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 237 ms
11,008 KB
testcase_03 AC 81 ms
11,008 KB
testcase_04 AC 135 ms
10,880 KB
testcase_05 AC 898 ms
30,644 KB
testcase_06 AC 882 ms
30,904 KB
testcase_07 AC 347 ms
30,776 KB
testcase_08 AC 962 ms
32,112 KB
testcase_09 AC 718 ms
22,288 KB
testcase_10 AC 707 ms
22,408 KB
testcase_11 AC 715 ms
22,408 KB
testcase_12 AC 714 ms
22,380 KB
testcase_13 AC 707 ms
22,272 KB
testcase_14 AC 712 ms
22,288 KB
testcase_15 AC 710 ms
22,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 1 << 63
# md = 998244353
md = 10**9+7

def solve():
    def iskado(i):
        a, b, c = aa[i-2:i+1]
        if a == b or b == c or c == a: return False
        return max(a, b, c) == b or min(a, b, c) == b

    n = II()
    aa = LI()
    aa += aa

    ans = 0
    for si in range(3):
        dp = [0]*(n+1)
        for i in range(2,n):
            dp[i+1] = dp[i]
            if iskado(si+i): dp[i+1] = max(dp[i+1], dp[i-2]+aa[si+i-2])
        # print(si,dp)
        ans = max(ans, dp[-1])

    print(ans)

for _ in range(II()):
    solve()
0