結果

問題 No.1265 Balloon Survival
ユーザー uni_pythonuni_python
提出日時 2020-11-01 22:36:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 685 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 160,876 KB
最終ジャッジ日時 2024-07-22 05:54:20
合計ジャッジ時間 9,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
57,728 KB
testcase_01 AC 42 ms
52,080 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 44 ms
52,224 KB
testcase_04 AC 44 ms
52,864 KB
testcase_05 AC 46 ms
53,156 KB
testcase_06 AC 44 ms
52,736 KB
testcase_07 AC 45 ms
52,352 KB
testcase_08 AC 45 ms
52,224 KB
testcase_09 AC 48 ms
52,608 KB
testcase_10 AC 44 ms
52,352 KB
testcase_11 AC 46 ms
52,992 KB
testcase_12 AC 47 ms
52,992 KB
testcase_13 AC 45 ms
52,480 KB
testcase_14 AC 332 ms
85,684 KB
testcase_15 AC 234 ms
82,560 KB
testcase_16 AC 139 ms
78,232 KB
testcase_17 AC 1,566 ms
112,824 KB
testcase_18 AC 167 ms
79,776 KB
testcase_19 AC 151 ms
78,464 KB
testcase_20 AC 343 ms
85,760 KB
testcase_21 AC 683 ms
93,748 KB
testcase_22 AC 411 ms
86,860 KB
testcase_23 AC 453 ms
88,260 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))



N=I()

if N==1:
    print(0)
    exit()
if N==2:
    print(1)
    exit()

X=[0]*N
Y=[0]*N
for i in range(N):
    X[i],Y[i]=MI()

# 取り除いた or 消えた
used=[0]*N

import heapq
hq=[]
for i in range(N):
    for j in range(i+1,N):
        d=(X[i]-X[j])**2 + (Y[i]-Y[j])**2
        heapq.heappush(hq,(d,i,j))

ans=0
while hq:
    _,i,j=heapq.heappop(hq)
    if i==0:
        if used[j]==0:
            ans+=1
            used[j]=1
    if used[i]==0 and used[j]==0:
        used[i]=1
        used[j]=1
        
print(ans)
0