結果

問題 No.871 かえるのうた
ユーザー kawacchukawacchu
提出日時 2019-08-30 22:06:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,418 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 153,520 KB
最終ジャッジ日時 2024-11-21 23:44:48
合計ジャッジ時間 10,852 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,264 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 44 ms
54,400 KB
testcase_03 AC 44 ms
54,144 KB
testcase_04 AC 51 ms
60,544 KB
testcase_05 AC 45 ms
53,888 KB
testcase_06 AC 45 ms
54,144 KB
testcase_07 AC 46 ms
53,888 KB
testcase_08 AC 63 ms
67,200 KB
testcase_09 AC 66 ms
69,120 KB
testcase_10 AC 100 ms
76,800 KB
testcase_11 AC 57 ms
63,488 KB
testcase_12 AC 99 ms
78,848 KB
testcase_13 AC 101 ms
76,824 KB
testcase_14 AC 117 ms
94,876 KB
testcase_15 AC 124 ms
97,708 KB
testcase_16 TLE -
testcase_17 AC 115 ms
94,288 KB
testcase_18 AC 69 ms
74,624 KB
testcase_19 AC 168 ms
96,940 KB
testcase_20 AC 574 ms
77,568 KB
testcase_21 AC 152 ms
86,016 KB
testcase_22 AC 52 ms
60,800 KB
testcase_23 AC 45 ms
53,888 KB
testcase_24 AC 46 ms
53,632 KB
testcase_25 AC 111 ms
76,640 KB
testcase_26 AC 128 ms
77,312 KB
testcase_27 AC 90 ms
77,184 KB
testcase_28 AC 46 ms
54,016 KB
testcase_29 AC 93 ms
94,336 KB
testcase_30 AC 287 ms
94,336 KB
testcase_31 AC 58 ms
64,768 KB
testcase_32 AC 212 ms
95,232 KB
testcase_33 AC 157 ms
96,812 KB
testcase_34 AC 72 ms
76,800 KB
testcase_35 AC 129 ms
93,568 KB
testcase_36 AC 106 ms
92,800 KB
testcase_37 AC 214 ms
87,296 KB
testcase_38 AC 485 ms
96,168 KB
testcase_39 AC 255 ms
94,992 KB
testcase_40 AC 190 ms
93,568 KB
testcase_41 AC 45 ms
54,016 KB
testcase_42 AC 178 ms
93,952 KB
testcase_43 AC 45 ms
54,016 KB
testcase_44 AC 51 ms
61,568 KB
testcase_45 AC 105 ms
77,440 KB
testcase_46 AC 45 ms
54,016 KB
testcase_47 AC 45 ms
53,888 KB
testcase_48 AC 45 ms
153,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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