結果

問題 No.1265 Balloon Survival
ユーザー r_ishidar_ishida
提出日時 2020-12-30 07:28:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,163 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 148,584 KB
最終ジャッジ日時 2024-10-06 14:39:11
合計ジャッジ時間 13,803 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 39 ms
52,992 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 37 ms
53,120 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 38 ms
52,736 KB
testcase_14 AC 116 ms
76,480 KB
testcase_15 AC 99 ms
72,064 KB
testcase_16 AC 65 ms
65,152 KB
testcase_17 AC 490 ms
121,232 KB
testcase_18 AC 73 ms
67,712 KB
testcase_19 AC 65 ms
65,656 KB
testcase_20 AC 120 ms
75,904 KB
testcase_21 AC 229 ms
94,860 KB
testcase_22 AC 163 ms
89,764 KB
testcase_23 AC 176 ms
92,416 KB
testcase_24 AC 961 ms
148,176 KB
testcase_25 AC 938 ms
148,112 KB
testcase_26 AC 942 ms
148,168 KB
testcase_27 AC 962 ms
148,372 KB
testcase_28 AC 1,006 ms
148,044 KB
testcase_29 AC 1,163 ms
148,400 KB
testcase_30 AC 968 ms
148,248 KB
testcase_31 AC 947 ms
148,584 KB
testcase_32 AC 992 ms
148,036 KB
testcase_33 AC 947 ms
148,172 KB
testcase_34 AC 40 ms
52,352 KB
testcase_35 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())

N = I()
XY = [()] * N
for i in range(N):
    x, y = MI()
    XY[i] = (x, y)

edges = []
for i, (x, y) in enumerate(XY):
    for j, (x2, y2) in enumerate(XY[i+1:], i+1):
        dist = (x-x2)**2 + (y-y2)**2
        edges.append((dist, i, j))

edges.sort(key=itemgetter(0))
removed = [0] * N
ans = 0
for dist, a, b in edges:
    if removed[a] or removed[b]:
        continue
    if a == 0:
        ans += 1
        removed[b] = 1
    elif b == 0:
        ans += 1
        removed[a] = 1
    else:
        removed[a] = 1
        removed[b] = 1
print(ans)
0