結果

問題 No.871 かえるのうた
ユーザー timitimi
提出日時 2021-03-08 15:42:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,536 KB
最終ジャッジ日時 2024-11-30 11:05:29
合計ジャッジ時間 7,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 40 ms
11,392 KB
testcase_09 AC 41 ms
11,648 KB
testcase_10 AC 34 ms
11,008 KB
testcase_11 AC 34 ms
11,264 KB
testcase_12 AC 72 ms
15,180 KB
testcase_13 AC 42 ms
11,776 KB
testcase_14 AC 267 ms
32,788 KB
testcase_15 AC 265 ms
34,392 KB
testcase_16 AC 387 ms
33,380 KB
testcase_17 AC 249 ms
32,356 KB
testcase_18 AC 74 ms
14,680 KB
testcase_19 AC 270 ms
34,536 KB
testcase_20 AC 61 ms
12,724 KB
testcase_21 AC 129 ms
19,192 KB
testcase_22 AC 32 ms
10,752 KB
testcase_23 AC 33 ms
10,880 KB
testcase_24 AC 33 ms
10,752 KB
testcase_25 AC 41 ms
11,264 KB
testcase_26 AC 64 ms
12,928 KB
testcase_27 AC 67 ms
14,208 KB
testcase_28 AC 32 ms
10,752 KB
testcase_29 AC 158 ms
23,012 KB
testcase_30 AC 271 ms
27,568 KB
testcase_31 AC 37 ms
11,264 KB
testcase_32 AC 232 ms
25,300 KB
testcase_33 AC 263 ms
33,160 KB
testcase_34 AC 89 ms
16,896 KB
testcase_35 AC 169 ms
24,616 KB
testcase_36 AC 214 ms
29,552 KB
testcase_37 AC 166 ms
20,488 KB
testcase_38 AC 346 ms
32,768 KB
testcase_39 AC 324 ms
31,424 KB
testcase_40 AC 232 ms
24,128 KB
testcase_41 AC 32 ms
10,752 KB
testcase_42 AC 228 ms
26,288 KB
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 32 ms
10,752 KB
testcase_45 AC 36 ms
11,008 KB
testcase_46 AC 31 ms
10,880 KB
testcase_47 AC 30 ms
10,880 KB
testcase_48 AC 32 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
X=list(map(int, input().split()))
A=list(map(int, input().split()))
import bisect
D=[]
for i in range(N):
  l=bisect.bisect_left(X,X[i]-A[i])
  r=bisect.bisect_right(X,X[i]+A[i])-1
  D.append((l,r))
#print(D)
from collections import deque
d=deque()
d.append(K-1)
E=[0]*N
E[K-1]=1
ll,rr=K-1,K-1
while d:
  now=d.popleft()
  l,r=D[now]
  if 0<ll:
    if l<ll:
      for i in range(l,ll):
        if E[i]==1:
          break
        else:
          E[i]=1
          d.append(i)
  if rr<N-1:
    if rr<r:
      for i in range(r,rr,-1):
        if E[i]==1:
          break
        else:
          E[i]=1
          d.append(i)
print(sum(E))
0