結果

問題 No.1265 Balloon Survival
ユーザー c-yanc-yan
提出日時 2020-10-23 22:30:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 525 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 91,164 KB
最終ジャッジ日時 2024-07-21 11:20:18
合計ジャッジ時間 8,368 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,692 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 35 ms
10,752 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 33 ms
10,752 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 33 ms
10,752 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 AC 33 ms
10,752 KB
testcase_13 AC 33 ms
10,752 KB
testcase_14 AC 234 ms
18,688 KB
testcase_15 AC 163 ms
16,384 KB
testcase_16 AC 73 ms
12,672 KB
testcase_17 AC 1,364 ms
49,280 KB
testcase_18 AC 100 ms
13,824 KB
testcase_19 AC 79 ms
13,056 KB
testcase_20 AC 227 ms
18,560 KB
testcase_21 AC 586 ms
29,184 KB
testcase_22 AC 329 ms
21,632 KB
testcase_23 AC 371 ms
22,912 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 #

from heapq import heapify, heappop

N = int(input())
xy = [tuple(map(int, input().split())) for _ in range(N)]

a = []
for i in range(N - 1):
    for j in range(i + 1, N):
        d = (xy[i][0] - xy[j][0]) * (xy[i][0] - xy[j][0]) + (xy[i][1] - xy[j][1]) * (xy[i][1] - xy[j][1])
        a.append((d, i, j))
heapify(a)

result = 0
t = set()
while a:
    _, i, j = heappop(a)
    if i in t or j in t:
        continue
    if i == 0:
        result += 1
        t.add(j)
    else:
        t.add(i)
        t.add(j)
print(result)
0