結果

問題 No.1827 最長部分スーパーリッチ門松列列
ユーザー kozykozy
提出日時 2022-01-28 23:09:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 258,384 KB
最終ジャッジ日時 2024-06-09 16:41:18
合計ジャッジ時間 8,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,552 KB
testcase_01 AC 40 ms
52,380 KB
testcase_02 AC 42 ms
54,216 KB
testcase_03 AC 159 ms
78,044 KB
testcase_04 AC 131 ms
76,364 KB
testcase_05 AC 126 ms
76,232 KB
testcase_06 AC 130 ms
76,236 KB
testcase_07 AC 266 ms
258,288 KB
testcase_08 AC 257 ms
258,384 KB
testcase_09 AC 263 ms
257,788 KB
testcase_10 AC 258 ms
258,048 KB
testcase_11 AC 262 ms
258,128 KB
testcase_12 AC 258 ms
258,012 KB
testcase_13 AC 257 ms
257,968 KB
testcase_14 AC 250 ms
258,292 KB
testcase_15 AC 256 ms
257,908 KB
testcase_16 AC 258 ms
258,064 KB
testcase_17 AC 457 ms
258,088 KB
testcase_18 AC 456 ms
257,928 KB
testcase_19 AC 284 ms
258,180 KB
testcase_20 AC 289 ms
258,348 KB
testcase_21 AC 289 ms
258,188 KB
testcase_22 AC 336 ms
258,092 KB
testcase_23 AC 280 ms
257,800 KB
testcase_24 AC 282 ms
258,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for i in range(N):
  s=int(input())
  A=list(map(int,input().split()))
  A=[0]+A+[0]
  c=dict()
  for j in range(len(A)):
    c[A[j]]=j
  if c[s]==1 or c[s]==s:
    this=2
    ans=2
  else:
    this=3
    ans=3
  for j in range(s-1,0,-1):
    if (A[c[j]]>A[c[j]-1] and A[c[j]]>A[c[j]+1]):
      if c[j]==1 or c[j]==s:
        this+=1
      else:
        this+=2
    if (A[c[j]]<A[c[j]-1] and A[c[j]]<A[c[j]+1]):
      this-=2
    if A[c[j]-1]==0:
      if A[c[j]+1]>A[c[j]]:
        this-=1
    if A[c[j]+1]==0:
      if A[c[j]-1]>A[c[j]]:
        this-=1
    
    #print(this,"a")
    
    ans=max(ans,this)
  print(ans)
0