結果

問題 No.871 かえるのうた
ユーザー ThetaTheta
提出日時 2022-11-25 14:46:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 1,532 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,052 KB
最終ジャッジ日時 2024-11-30 11:11:21
合計ジャッジ時間 5,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
11,520 KB
testcase_01 AC 36 ms
11,648 KB
testcase_02 AC 34 ms
11,520 KB
testcase_03 AC 34 ms
11,520 KB
testcase_04 AC 33 ms
11,520 KB
testcase_05 AC 34 ms
11,520 KB
testcase_06 AC 32 ms
11,520 KB
testcase_07 AC 33 ms
11,520 KB
testcase_08 AC 36 ms
11,904 KB
testcase_09 AC 37 ms
12,288 KB
testcase_10 AC 33 ms
11,648 KB
testcase_11 AC 35 ms
11,904 KB
testcase_12 AC 60 ms
14,464 KB
testcase_13 AC 39 ms
12,416 KB
testcase_14 AC 168 ms
29,488 KB
testcase_15 AC 167 ms
29,064 KB
testcase_16 AC 252 ms
30,052 KB
testcase_17 AC 157 ms
26,276 KB
testcase_18 AC 57 ms
14,048 KB
testcase_19 AC 172 ms
27,756 KB
testcase_20 AC 53 ms
13,056 KB
testcase_21 AC 93 ms
17,544 KB
testcase_22 AC 37 ms
11,648 KB
testcase_23 AC 33 ms
11,520 KB
testcase_24 AC 33 ms
11,520 KB
testcase_25 AC 37 ms
11,904 KB
testcase_26 AC 52 ms
13,056 KB
testcase_27 AC 51 ms
14,080 KB
testcase_28 AC 33 ms
11,520 KB
testcase_29 AC 102 ms
19,572 KB
testcase_30 AC 176 ms
23,656 KB
testcase_31 AC 36 ms
12,160 KB
testcase_32 AC 154 ms
22,016 KB
testcase_33 AC 170 ms
27,916 KB
testcase_34 AC 63 ms
15,888 KB
testcase_35 AC 105 ms
21,328 KB
testcase_36 AC 129 ms
24,480 KB
testcase_37 AC 116 ms
19,324 KB
testcase_38 AC 231 ms
28,068 KB
testcase_39 AC 214 ms
25,888 KB
testcase_40 AC 200 ms
20,308 KB
testcase_41 AC 33 ms
11,520 KB
testcase_42 AC 159 ms
21,476 KB
testcase_43 AC 34 ms
11,520 KB
testcase_44 AC 33 ms
11,520 KB
testcase_45 AC 36 ms
11,776 KB
testcase_46 AC 33 ms
11,520 KB
testcase_47 AC 33 ms
11,648 KB
testcase_48 AC 34 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
from math import inf
from typing import NamedTuple


class Frog(NamedTuple):
    coord: int
    amp: int

    def is_range(self, start: int, end: int) -> bool:
        return start <= self.coord <= end

    @property
    def range(self) -> tuple[int, int]:
        return self.coord-self.amp, self.coord+self.amp


def main():
    N, K = map(int, input().split())
    X = list(map(int, input().split()))
    A = list(map(int, input().split()))
    frogs: list[Frog] = [Frog(coord, amp) for coord, amp in zip(X, A)]

    left_effect = X[K-1]-A[K-1]
    right_effect = X[K-1]+A[K-1]
    left_idx = K-1
    right_idx = K
    idx_changed = True
    
    while idx_changed:
        new_gelo: list[Frog] = []
        idx_changed = False

        left_idx_candidate = bisect_left(X, left_effect)
        right_idx_candidate = bisect_right(X, right_effect)

        if left_idx != left_idx_candidate:
            idx_changed = True
            new_gelo.extend(frogs[left_idx_candidate:left_idx])
        left_idx = left_idx_candidate

        if right_idx != right_idx_candidate:
            idx_changed = True
            new_gelo.extend(frogs[right_idx:right_idx_candidate])
            right_idx = right_idx_candidate

        for frog in new_gelo:
            left_range, right_range = frog.range
            left_effect = min(left_effect, left_range)
            right_effect = max(right_effect, right_range)
        
    print(right_idx - left_idx)


if __name__ == "__main__":
    main()
0