結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー ytftytft
提出日時 2022-03-23 00:34:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-10-10 19:30:24
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 257 ms
78,092 KB
testcase_03 AC 171 ms
77,292 KB
testcase_04 AC 158 ms
78,060 KB
testcase_05 AC 138 ms
107,904 KB
testcase_06 AC 127 ms
108,160 KB
testcase_07 AC 118 ms
108,160 KB
testcase_08 AC 127 ms
108,160 KB
testcase_09 AC 149 ms
105,600 KB
testcase_10 AC 150 ms
105,984 KB
testcase_11 AC 146 ms
105,728 KB
testcase_12 AC 144 ms
105,984 KB
testcase_13 AC 146 ms
105,856 KB
testcase_14 AC 146 ms
106,112 KB
testcase_15 AC 143 ms
105,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
def kadomatsu(a):
	return (a[1]>a[0] and a[1]>a[2] and a[0]!=a[2]) or (a[1]<a[0] and a[1]<a[2] and a[0]!=a[2])
def solve():
	N=int(input())
	A=list(map(int,input().split()))
	ans=0
	for i in range(3):
		dp=[0 for i in range(N)]
		for j in range(2,N):
			dp[j]=dp[j-1]
			if kadomatsu(A[j-2:j+1]):
				dp[j]=max(dp[j],dp[j-3]+A[j-2])
		ans=max(ans,dp[N-1])
		A=A[1:]+[A[0]]
	print(ans)
T=int(input())
for i in range(T):
	solve()
0