結果

問題 No.1265 Balloon Survival
ユーザー 👑 KazunKazun
提出日時 2020-10-23 23:31:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 509 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 141,068 KB
最終ジャッジ日時 2024-07-21 13:28:30
合計ジャッジ時間 9,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,112 KB
testcase_01 AC 44 ms
52,608 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 AC 41 ms
52,864 KB
testcase_05 AC 45 ms
58,496 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 41 ms
53,120 KB
testcase_08 AC 43 ms
53,120 KB
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 41 ms
52,864 KB
testcase_12 AC 47 ms
58,752 KB
testcase_13 AC 41 ms
52,352 KB
testcase_14 AC 322 ms
84,408 KB
testcase_15 AC 235 ms
82,288 KB
testcase_16 AC 138 ms
78,796 KB
testcase_17 AC 1,631 ms
108,760 KB
testcase_18 AC 165 ms
80,000 KB
testcase_19 AC 143 ms
78,976 KB
testcase_20 AC 320 ms
84,476 KB
testcase_21 AC 680 ms
92,752 KB
testcase_22 AC 411 ms
86,624 KB
testcase_23 AC 455 ms
87,660 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 heapq

def dist(P,Q):
    a,b=P[0]-Q[0],P[1]-Q[1]
    return a*a+b*b

N=int(input())
P=[0]*N

for i in range(N):
    P[i]=tuple(map(int,input().split()))

Q=[0]*(N*(N-1)//2)
k=0
for i in range(N):
    for j in range(i+1,N):
        Q[k]=(dist(P[i],P[j]),j,i)
        k+=1

heapq.heapify(Q)
Flag=[True for _ in range(N)]

X=0
while Q:
    (_,j,i)=heapq.heappop(Q)

    if not(Flag[i] and Flag[j]):
        continue

    Flag[j]=False
    if i!=0:
        Flag[i]=False
    if i==0:
        X+=1
print(X)
0