結果

問題 No.1265 Balloon Survival
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-20 10:22:03
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 766 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 196,600 KB
最終ジャッジ日時 2024-09-17 12:16:42
合計ジャッジ時間 16,308 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 35 ms
52,864 KB
testcase_02 RE -
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 37 ms
52,736 KB
testcase_05 AC 33 ms
53,376 KB
testcase_06 AC 33 ms
52,992 KB
testcase_07 AC 33 ms
52,864 KB
testcase_08 AC 32 ms
52,864 KB
testcase_09 AC 32 ms
52,608 KB
testcase_10 AC 31 ms
52,608 KB
testcase_11 AC 32 ms
52,608 KB
testcase_12 AC 33 ms
52,608 KB
testcase_13 AC 36 ms
52,992 KB
testcase_14 AC 195 ms
88,716 KB
testcase_15 AC 156 ms
84,664 KB
testcase_16 AC 83 ms
78,848 KB
testcase_17 AC 648 ms
133,140 KB
testcase_18 AC 112 ms
80,952 KB
testcase_19 AC 89 ms
79,232 KB
testcase_20 AC 178 ms
88,064 KB
testcase_21 AC 351 ms
102,144 KB
testcase_22 AC 229 ms
92,548 KB
testcase_23 AC 246 ms
94,232 KB
testcase_24 AC 1,258 ms
196,224 KB
testcase_25 AC 1,259 ms
196,324 KB
testcase_26 AC 1,242 ms
196,580 KB
testcase_27 AC 1,196 ms
196,100 KB
testcase_28 AC 1,201 ms
196,144 KB
testcase_29 AC 1,298 ms
196,600 KB
testcase_30 AC 1,258 ms
195,688 KB
testcase_31 AC 1,202 ms
195,968 KB
testcase_32 AC 1,206 ms
196,096 KB
testcase_33 AC 1,202 ms
195,968 KB
testcase_34 AC 43 ms
59,008 KB
testcase_35 AC 36 ms
52,480 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):
  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