結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 230 ms
11,136 KB
testcase_03 AC 69 ms
10,752 KB
testcase_04 AC 121 ms
10,880 KB
testcase_05 AC 816 ms
30,904 KB
testcase_06 AC 826 ms
31,036 KB
testcase_07 AC 309 ms
30,900 KB
testcase_08 AC 898 ms
32,116 KB
testcase_09 AC 646 ms
22,412 KB
testcase_10 AC 643 ms
22,456 KB
testcase_11 AC 651 ms
22,408 KB
testcase_12 AC 655 ms
22,384 KB
testcase_13 AC 650 ms
22,396 KB
testcase_14 AC 654 ms
22,416 KB
testcase_15 AC 655 ms
22,404 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