結果

問題 No.1368 サイクルの中に眠る門松列
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-12 09:23:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 121,088 KB
最終ジャッジ日時 2024-07-19 03:53:10
合計ジャッジ時間 3,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 181 ms
78,200 KB
testcase_03 AC 151 ms
77,476 KB
testcase_04 AC 147 ms
77,312 KB
testcase_05 AC 126 ms
110,976 KB
testcase_06 AC 131 ms
110,976 KB
testcase_07 AC 103 ms
121,088 KB
testcase_08 AC 116 ms
110,984 KB
testcase_09 AC 181 ms
109,192 KB
testcase_10 AC 183 ms
108,928 KB
testcase_11 AC 183 ms
108,672 KB
testcase_12 AC 177 ms
109,184 KB
testcase_13 AC 174 ms
108,928 KB
testcase_14 AC 175 ms
108,672 KB
testcase_15 AC 185 ms
108,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
ans=[]
for _ in range(t):
  n=int(input())
  a_=list(map(int,input().split()))
  ansi=0
  for idx in range(3):# スタート位置
    dp=[0]*(n+1)
    a=a_[idx:]+a_[:idx]
    for i in range(n-2):
      if a[i]!=a[i+1]!=a[i+2] and a[i]!=a[i+2] and (a[i]<a[i+1]>a[i+2] or a[i]>a[i+1]<a[i+2]):
        dp[i+3]=max(dp[i+3],dp[i]+a[i])
      dp[i+1]=max(dp[i+1],dp[i])
    ansi=max(ansi,max(dp))
  ans.append(ansi)
print(*ans,sep='\n')
0