結果

問題 No.871 かえるのうた
ユーザー kawacchukawacchu
提出日時 2019-08-30 22:09:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,456 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 38,076 KB
最終ジャッジ日時 2024-11-21 23:50:41
合計ジャッジ時間 24,594 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,256 KB
testcase_01 AC 33 ms
38,076 KB
testcase_02 AC 33 ms
16,384 KB
testcase_03 AC 31 ms
22,912 KB
testcase_04 AC 31 ms
16,256 KB
testcase_05 AC 31 ms
33,004 KB
testcase_06 AC 29 ms
16,128 KB
testcase_07 AC 29 ms
28,572 KB
testcase_08 AC 33 ms
16,768 KB
testcase_09 AC 35 ms
11,264 KB
testcase_10 AC 41 ms
11,008 KB
testcase_11 AC 30 ms
11,136 KB
testcase_12 AC 54 ms
13,696 KB
testcase_13 AC 39 ms
11,520 KB
testcase_14 AC 148 ms
27,352 KB
testcase_15 AC 142 ms
27,492 KB
testcase_16 TLE -
testcase_17 AC 141 ms
26,112 KB
testcase_18 AC 52 ms
13,468 KB
testcase_19 AC 204 ms
27,600 KB
testcase_20 TLE -
testcase_21 AC 258 ms
17,348 KB
testcase_22 AC 32 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 154 ms
11,008 KB
testcase_26 AC 1,226 ms
12,288 KB
testcase_27 AC 49 ms
12,800 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 94 ms
17,824 KB
testcase_30 TLE -
testcase_31 AC 34 ms
11,136 KB
testcase_32 AC 1,137 ms
20,352 KB
testcase_33 AC 159 ms
25,780 KB
testcase_34 AC 57 ms
14,844 KB
testcase_35 AC 102 ms
19,820 KB
testcase_36 AC 117 ms
22,340 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 332 ms
18,120 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 355 ms
17,996 KB
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 31 ms
10,752 KB
testcase_45 AC 40 ms
11,008 KB
testcase_46 AC 31 ms
10,880 KB
testcase_47 AC 31 ms
10,752 KB
testcase_48 AC 31 ms
36,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from bisect import *
from collections import deque

class UnionFind:
    def __init__(self, num):
        self.rank = [0] * num
        self.par = [i for i in range(num)]
        self.n = num
 
    def find_root(self, node):
        if self.par[node] == node:
            return node
        else:
            self.par[node] = self.find_root(self.par[node])
            return self.par[node]
 
    def same_root(self, x, y):
        return self.find_root(x) == self.find_root(y)
 
    def union(self, x, y):
        x = self.find_root(x)
        y = self.find_root(y)
        if x == y:
            return
        if self.rank[x] > self.rank[y]:
            self.par[y] = x
        else:
            self.par[x] = y
            if self.rank[x] == self.rank[y]:
                self.rank[y] += 1

N,K = map(int,input().split())
X = list(map(int,input().split()))
A = list(map(int,input().split()))

UF = UnionFind(N)
q = deque([K-1])
while q :
    indn = q.popleft()
    x = X[indn]
    indl = bisect_left(X,x-A[indn])
    for j in range(indl,indn) :
        if UF.same_root(j,indn) :
            continue
        UF.union(j,indn)
        q.append(j)
    indr = bisect_right(X,x+A[indn])-1
    for j in range(indn+1,indr+1) :
        if UF.same_root(indn,j) :
            continue
        UF.union(indn,j)
        q.append(j)
    


ans = 0
for i in range(N) :
    if UF.same_root(i,K-1) :
        ans += 1
print(ans)
0