結果

問題 No.1265 Balloon Survival
ユーザー 👑 KazunKazun
提出日時 2021-12-25 03:28:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 111,872 KB
最終ジャッジ日時 2024-09-20 03:57:24
合計ジャッジ時間 10,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,016 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 42 ms
53,760 KB
testcase_05 AC 41 ms
53,504 KB
testcase_06 AC 41 ms
53,632 KB
testcase_07 AC 43 ms
54,016 KB
testcase_08 AC 42 ms
53,632 KB
testcase_09 AC 42 ms
53,376 KB
testcase_10 AC 42 ms
53,888 KB
testcase_11 AC 44 ms
53,632 KB
testcase_12 AC 43 ms
53,504 KB
testcase_13 AC 42 ms
53,760 KB
testcase_14 AC 112 ms
70,272 KB
testcase_15 AC 93 ms
68,736 KB
testcase_16 AC 67 ms
64,256 KB
testcase_17 AC 415 ms
101,652 KB
testcase_18 AC 76 ms
66,048 KB
testcase_19 AC 72 ms
64,512 KB
testcase_20 AC 115 ms
70,272 KB
testcase_21 AC 193 ms
78,720 KB
testcase_22 AC 130 ms
73,344 KB
testcase_23 AC 141 ms
74,496 KB
testcase_24 AC 748 ms
110,480 KB
testcase_25 AC 751 ms
111,096 KB
testcase_26 AC 755 ms
111,868 KB
testcase_27 AC 770 ms
111,096 KB
testcase_28 AC 762 ms
111,744 KB
testcase_29 AC 772 ms
111,744 KB
testcase_30 AC 761 ms
111,872 KB
testcase_31 AC 746 ms
111,872 KB
testcase_32 AC 750 ms
111,356 KB
testcase_33 AC 741 ms
111,364 KB
testcase_34 AC 41 ms
53,760 KB
testcase_35 AC 43 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from operator import itemgetter

import sys
input=sys.stdin.readline

def main():
    N=int(input())
    P=[0]*N

    for i in range(N):
        P[i]=tuple(map(int,input().split()))

    dist=[0]*(N*(N-1)//2)
    I=[0]*(N*(N-1)//2)
    J=[0]*(N*(N-1)//2)

    k=0
    for i in range(N):
        for j in range(i+1,N):
            a,b=P[i][0]-P[j][0],P[i][1]-P[j][1]
            I[k]=i; J[k]=j; dist[k]=a*a+b*b
            k+=1

    A=sorted(range(N*(N-1)//2), key=lambda k:dist[k])
    Flag=[1]*N

    X=0
    for k in A:
        i=I[k]; j=J[k]
        if not(Flag[i] and Flag[j]):
            continue

        Flag[j]=0
        if i!=0:
            Flag[i]=0
        else:
            X+=1
    return X

if __name__=="__main__":
    print(main())
0