結果

問題 No.1265 Balloon Survival
ユーザー kotatsuinu5kotatsuinu5
提出日時 2020-10-23 23:59:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 801 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 75,796 KB
最終ジャッジ日時 2024-07-21 13:59:48
合計ジャッジ時間 14,089 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
51,524 KB
testcase_01 AC 535 ms
44,112 KB
testcase_02 AC 517 ms
43,988 KB
testcase_03 AC 527 ms
44,620 KB
testcase_04 AC 524 ms
44,112 KB
testcase_05 AC 516 ms
44,112 KB
testcase_06 AC 536 ms
44,236 KB
testcase_07 AC 527 ms
44,236 KB
testcase_08 AC 531 ms
44,364 KB
testcase_09 AC 533 ms
44,116 KB
testcase_10 AC 517 ms
44,364 KB
testcase_11 WA -
testcase_12 AC 521 ms
44,240 KB
testcase_13 WA -
testcase_14 AC 837 ms
49,296 KB
testcase_15 AC 733 ms
46,988 KB
testcase_16 AC 590 ms
44,416 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N=int(input())
S=np.full((N,2),0)

for i in range(N):
    A,B=map(int,input().split())
    S[i][0]=A
    S[i][1]=B
    
    
count=0

while N!=1:
    
    all_diffs = np.expand_dims(S, axis=1) - np.expand_dims(S, axis=0)
    degree_distance = np.sqrt(np.sum(all_diffs ** 2, axis=-1))
    
   
    
    tmp=np.where(degree_distance==degree_distance[degree_distance>0].min())
    tmp1=tmp[0][0]
    tmp2=tmp[0][1]
    if tmp1==0:
        N-=1
        S=np.delete(S,tmp2,0)
        count+=1
    elif tmp2==0:
        N-=1
        S=np.delete(S,tmp1,0)
        count+=1
    else:
        N-=2
        #print("mohu2")
        S=np.delete(S,max(tmp1,tmp2),0)
        S=np.delete(S,min(tmp1,tmp2),0)
    #print(S)
    #print("mohu")

    
     #print("mohu")
    
print(count)            
0