結果

問題 No.871 かえるのうた
ユーザー timitimi
提出日時 2021-03-08 15:42:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,480 KB
最終ジャッジ日時 2024-05-07 16:42:56
合計ジャッジ時間 6,594 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
11,008 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 35 ms
11,264 KB
testcase_09 AC 36 ms
11,520 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 28 ms
11,008 KB
testcase_12 AC 66 ms
15,104 KB
testcase_13 AC 37 ms
11,904 KB
testcase_14 AC 236 ms
32,656 KB
testcase_15 AC 228 ms
34,480 KB
testcase_16 AC 355 ms
33,180 KB
testcase_17 AC 219 ms
32,096 KB
testcase_18 AC 64 ms
14,548 KB
testcase_19 AC 251 ms
34,404 KB
testcase_20 AC 55 ms
12,720 KB
testcase_21 AC 117 ms
18,952 KB
testcase_22 AC 28 ms
10,880 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 35 ms
11,136 KB
testcase_26 AC 54 ms
12,800 KB
testcase_27 AC 57 ms
14,080 KB
testcase_28 AC 28 ms
10,624 KB
testcase_29 AC 139 ms
22,876 KB
testcase_30 AC 256 ms
27,444 KB
testcase_31 AC 34 ms
11,136 KB
testcase_32 AC 214 ms
25,208 KB
testcase_33 AC 235 ms
33,184 KB
testcase_34 AC 75 ms
16,896 KB
testcase_35 AC 148 ms
24,360 KB
testcase_36 AC 189 ms
29,552 KB
testcase_37 AC 155 ms
20,392 KB
testcase_38 AC 333 ms
32,640 KB
testcase_39 AC 278 ms
31,424 KB
testcase_40 AC 215 ms
23,876 KB
testcase_41 AC 28 ms
10,752 KB
testcase_42 AC 211 ms
26,048 KB
testcase_43 AC 27 ms
10,624 KB
testcase_44 AC 28 ms
10,752 KB
testcase_45 AC 32 ms
11,008 KB
testcase_46 AC 28 ms
10,752 KB
testcase_47 AC 27 ms
10,752 KB
testcase_48 AC 27 ms
10,752 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