結果

問題 No.1265 Balloon Survival
ユーザー c-yanc-yan
提出日時 2020-10-23 22:29:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 525 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 154,408 KB
最終ジャッジ日時 2024-07-21 11:17:53
合計ジャッジ時間 9,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,308 KB
testcase_01 AC 40 ms
53,212 KB
testcase_02 AC 39 ms
53,080 KB
testcase_03 AC 40 ms
53,832 KB
testcase_04 AC 41 ms
53,480 KB
testcase_05 AC 47 ms
59,416 KB
testcase_06 AC 41 ms
53,488 KB
testcase_07 AC 40 ms
52,688 KB
testcase_08 AC 42 ms
52,940 KB
testcase_09 AC 40 ms
53,108 KB
testcase_10 AC 41 ms
54,036 KB
testcase_11 AC 42 ms
53,680 KB
testcase_12 AC 45 ms
59,392 KB
testcase_13 AC 40 ms
53,160 KB
testcase_14 AC 307 ms
86,116 KB
testcase_15 AC 226 ms
83,644 KB
testcase_16 AC 140 ms
78,644 KB
testcase_17 AC 1,675 ms
116,620 KB
testcase_18 AC 170 ms
80,348 KB
testcase_19 AC 151 ms
78,932 KB
testcase_20 AC 343 ms
86,076 KB
testcase_21 AC 718 ms
93,996 KB
testcase_22 AC 425 ms
89,736 KB
testcase_23 AC 463 ms
91,068 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