結果

問題 No.2923 Mayor's Job
ユーザー lollipoplollipop
提出日時 2024-10-12 16:03:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,538 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-10-12 16:03:41
合計ジャッジ時間 11,857 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 900 ms
11,776 KB
testcase_04 AC 1,538 ms
107,392 KB
testcase_05 AC 906 ms
12,672 KB
testcase_06 AC 930 ms
12,032 KB
testcase_07 AC 955 ms
14,336 KB
testcase_08 AC 946 ms
14,464 KB
testcase_09 AC 940 ms
12,416 KB
testcase_10 AC 926 ms
14,336 KB
testcase_11 AC 1,439 ms
95,104 KB
testcase_12 AC 1,023 ms
60,160 KB
testcase_13 AC 170 ms
18,176 KB
testcase_14 AC 40 ms
11,136 KB
testcase_15 AC 27 ms
10,880 KB
testcase_16 AC 26 ms
10,880 KB
testcase_17 AC 27 ms
11,008 KB
testcase_18 AC 28 ms
11,008 KB
testcase_19 AC 29 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(x, prev, h):
    for to_x in to[x]:
        if to_x != prev and (to_x not in delete) and H[to_x] < h:
            delete.add(to_x)
            dfs(to_x, x, H[to_x])
##########################################################################
import sys; sys.setrecursionlimit(10**7)
from heapq import heapify, heappop, heappush
from math import dist

N, K = map(int,input().split())
H = list(map(int,input().split()))
XY = [list(map(int,input().split())) for _ in range(N)]

to = [[] for _ in range(N)]
for i in range(N-1):
    for j in range(i+1, N):
        if dist(XY[i], XY[j]) <= K:
            to[i].append(j)
            to[j].append(i)

delete = set()
Hi = [(-H[i], i) for i in range(N)]
heapify(Hi)

ans = 0
while Hi:
    h, i = heappop(Hi)
    if i not in delete:
        ans += 1
        dfs(i, -1, -h)

print(ans)
0