結果

問題 No.1265 Balloon Survival
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-20 10:23:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,308 ms / 2,000 ms
コード長 783 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 196,892 KB
最終ジャッジ日時 2024-09-17 12:17:34
合計ジャッジ時間 17,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,992 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
52,736 KB
testcase_04 AC 36 ms
52,864 KB
testcase_05 AC 37 ms
53,376 KB
testcase_06 AC 36 ms
52,992 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 38 ms
52,736 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 37 ms
52,736 KB
testcase_11 AC 37 ms
52,736 KB
testcase_12 AC 36 ms
53,120 KB
testcase_13 AC 36 ms
53,052 KB
testcase_14 AC 203 ms
88,988 KB
testcase_15 AC 162 ms
85,100 KB
testcase_16 AC 87 ms
78,976 KB
testcase_17 AC 682 ms
133,120 KB
testcase_18 AC 123 ms
80,768 KB
testcase_19 AC 96 ms
79,232 KB
testcase_20 AC 191 ms
88,064 KB
testcase_21 AC 374 ms
102,144 KB
testcase_22 AC 247 ms
92,416 KB
testcase_23 AC 274 ms
94,336 KB
testcase_24 AC 1,298 ms
196,352 KB
testcase_25 AC 1,304 ms
196,224 KB
testcase_26 AC 1,281 ms
196,892 KB
testcase_27 AC 1,308 ms
196,224 KB
testcase_28 AC 1,287 ms
195,840 KB
testcase_29 AC 1,305 ms
196,096 KB
testcase_30 AC 1,260 ms
196,228 KB
testcase_31 AC 1,296 ms
195,840 KB
testcase_32 AC 1,276 ms
195,968 KB
testcase_33 AC 1,277 ms
196,096 KB
testcase_34 AC 43 ms
58,880 KB
testcase_35 AC 37 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
xy=[list(map(int,input().split())) for _ in range(n)]
mat=[[] for i in range(n)]
for i in range(n):
  xi,yi=xy[i]
  for j in range(i):
    xj,yj=xy[j]
    d=(xi-xj)**2+(yi-yj)**2
    mat[i].append([d,i,j])
    mat[j].append([d,j,i])

from heapq import heappop,heappush
todo=[]
for i in range(n):
  if mat[i]:
    mat[i].sort(reverse=True)
    heappush(todo,mat[i].pop())

ans=0
seen=[0]*n
while todo:
  d,i,j=heappop(todo)
  if seen[i]==1 or seen[j]==1:
    if seen[i]==0 and mat[i]:
      heappush(todo,mat[i].pop())
    if seen[j]==0 and mat[j]:
      heappush(todo,mat[j].pop())
  elif i==0 or j==0:
    ans+=1
    seen[i]=1
    seen[j]=1
    seen[0]=0
    if seen[i]==0 and mat[i]:
      heappush(todo,mat[i].pop())
  else:
    seen[i]=1
    seen[j]=1
print(ans)

0