結果

問題 No.2757 Pin Game
ユーザー moon17moon17
提出日時 2024-05-17 22:54:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 192,592 KB
最終ジャッジ日時 2024-05-17 22:54:18
合計ジャッジ時間 2,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,080 KB
testcase_01 AC 40 ms
52,956 KB
testcase_02 AC 40 ms
53,428 KB
testcase_03 AC 40 ms
52,652 KB
testcase_04 AC 327 ms
175,576 KB
testcase_05 AC 466 ms
192,592 KB
testcase_06 AC 41 ms
52,964 KB
testcase_07 AC 41 ms
52,944 KB
testcase_08 AC 42 ms
53,248 KB
testcase_09 AC 41 ms
53,324 KB
testcase_10 AC 194 ms
113,100 KB
testcase_11 AC 145 ms
101,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import*
n,k,*x=map(int,open(0).read().split())
l=[[]]
r=[[]]
lm=[[]for _ in range(n)]
rm=[[]for _ in range(n)]
p=0
q=n-1
for i in range(n):
  if x[i]-x[p]<k:
    l[-1]+=i,
  else:
    l+=[i],
    p=i
  lm[i]=len(l),l[-1][0]
  j=n-1-i
  if x[q]-x[j]<k:
    r[-1]+=j,
  else:
    r+=[j],
    q=j
  rm[j]=len(r),r[-1][0]
ans=max(len(l),len(r))
for i in range(n):
  l,li=lm[i]
  j=bisect_right(x,x[li]+k)
  if j<n:
    r,ri=rm[j]
    ans=max(ans,l+r)
print(ans)
0