結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー mkawa2mkawa2
提出日時 2021-10-29 12:57:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,214 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 32,516 KB
最終ジャッジ日時 2024-04-16 13:21:06
合計ジャッジ時間 12,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1,160 ms
30,924 KB
testcase_06 AC 1,159 ms
30,916 KB
testcase_07 AC 240 ms
30,916 KB
testcase_08 WA -
testcase_09 AC 903 ms
22,432 KB
testcase_10 AC 906 ms
22,420 KB
testcase_11 AC 904 ms
22,296 KB
testcase_12 AC 903 ms
22,400 KB
testcase_13 WA -
testcase_14 AC 894 ms
22,304 KB
testcase_15 AC 899 ms
22,552 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):
        if i < 2: return False
        if aa[i] == aa[i-1] or aa[i-1] == aa[i-2] or aa[i] == aa[i-2]: return False
        return max(aa[i-2:i+1]) == aa[i-1] or min(aa[i-2:i+1]) == aa[i-1]

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

    ans = 0
    for si in range(3):
        dp = [0]*(n+1)
        for i in range(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