結果

問題 No.2923 Mayor's Job
ユーザー Polaris2124Polaris2124
提出日時 2024-10-12 15:21:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,275 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,344 KB
最終ジャッジ日時 2024-10-12 15:21:04
合計ジャッジ時間 3,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,312 KB
testcase_01 AC 46 ms
60,928 KB
testcase_02 AC 48 ms
61,184 KB
testcase_03 AC 104 ms
74,752 KB
testcase_04 AC 194 ms
105,344 KB
testcase_05 AC 124 ms
77,992 KB
testcase_06 AC 127 ms
78,104 KB
testcase_07 AC 123 ms
77,952 KB
testcase_08 AC 126 ms
77,824 KB
testcase_09 AC 126 ms
77,952 KB
testcase_10 AC 123 ms
77,568 KB
testcase_11 AC 194 ms
97,116 KB
testcase_12 AC 184 ms
85,200 KB
testcase_13 AC 92 ms
77,696 KB
testcase_14 AC 70 ms
71,936 KB
testcase_15 AC 48 ms
61,184 KB
testcase_16 AC 49 ms
61,440 KB
testcase_17 AC 49 ms
61,184 KB
testcase_18 AC 48 ms
61,056 KB
testcase_19 AC 50 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from itertools import product, permutations, combinations, accumulate
from heapq import heapify, heappush, heappop
from collections import deque, defaultdict, Counter
from bisect import bisect, bisect_left, bisect_right
from copy import copy, deepcopy
#from sortedcontainers import SortedSet, SortedList, SortedDict

sys.setrecursionlimit(10**7)
INF = float('inf')
LINF = 1 << 60
MOD = 10**9+7

def mii():
    return map(int, sys.stdin.readline().split())

N, K = mii()

H = list(mii())
XY = []
for i in range(N):
    XY.append(list(mii()))

graph = [[] for _ in range(N)]

def near(p1, p2):
    dist = (p1[0] - p2[0])**2 + (p1[1] - p2[1]) ** 2
    return dist <= K**2

indices = [0] * N

for i in range(N):
    for j in range(i+1, N):
        if H[i] < H[j] and near(XY[i], XY[j]):
            graph[i].append(j)
            indices[j] += 1
        elif H[i] > H[j] and near(XY[i], XY[j]):
            graph[j].append(i)
            indices[i] += 1


que = deque()
for i in range(N):
    if indices[i] == 0:
        que.append(i)

cnt = N

while len(que):
    u = que.pop()
    
    if len(graph[u]) >= 1:
        cnt -= 1
        for v in graph[u]:
            indices[v] -= 1
            if indices[v] == 0:
                que.append(v)

print(cnt)
0