結果
問題 | No.1265 Balloon Survival |
ユーザー | kotatsuinu5 |
提出日時 | 2020-10-24 00:01:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 801 bytes |
コンパイル時間 | 139 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 75,176 KB |
最終ジャッジ日時 | 2024-07-21 14:02:58 |
合計ジャッジ時間 | 14,081 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 528 ms
51,288 KB |
testcase_01 | AC | 526 ms
44,368 KB |
testcase_02 | AC | 525 ms
44,244 KB |
testcase_03 | AC | 538 ms
44,116 KB |
testcase_04 | AC | 538 ms
44,492 KB |
testcase_05 | AC | 529 ms
44,500 KB |
testcase_06 | AC | 531 ms
44,624 KB |
testcase_07 | AC | 522 ms
44,236 KB |
testcase_08 | AC | 522 ms
44,500 KB |
testcase_09 | AC | 523 ms
44,236 KB |
testcase_10 | AC | 522 ms
44,252 KB |
testcase_11 | WA | - |
testcase_12 | AC | 520 ms
44,488 KB |
testcase_13 | WA | - |
testcase_14 | AC | 834 ms
49,196 KB |
testcase_15 | AC | 722 ms
47,092 KB |
testcase_16 | AC | 563 ms
44,256 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 | -- | - |
ソースコード
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)