結果

問題 No.1265 Balloon Survival
ユーザー FromBooskaFromBooska
提出日時 2023-03-11 08:02:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,746 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 131,496 KB
最終ジャッジ日時 2024-09-18 06:12:20
合計ジャッジ時間 21,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,432 KB
testcase_01 AC 37 ms
52,872 KB
testcase_02 AC 36 ms
52,620 KB
testcase_03 AC 37 ms
52,416 KB
testcase_04 AC 37 ms
52,820 KB
testcase_05 AC 38 ms
53,256 KB
testcase_06 AC 37 ms
53,408 KB
testcase_07 AC 40 ms
53,128 KB
testcase_08 AC 38 ms
53,548 KB
testcase_09 AC 39 ms
52,436 KB
testcase_10 AC 38 ms
52,720 KB
testcase_11 AC 38 ms
53,224 KB
testcase_12 AC 38 ms
54,040 KB
testcase_13 AC 37 ms
52,584 KB
testcase_14 AC 169 ms
73,200 KB
testcase_15 AC 132 ms
70,168 KB
testcase_16 AC 73 ms
64,052 KB
testcase_17 AC 768 ms
100,576 KB
testcase_18 AC 92 ms
67,836 KB
testcase_19 AC 78 ms
63,996 KB
testcase_20 AC 167 ms
72,592 KB
testcase_21 AC 376 ms
95,788 KB
testcase_22 AC 217 ms
76,684 KB
testcase_23 AC 237 ms
79,140 KB
testcase_24 AC 1,746 ms
129,284 KB
testcase_25 AC 1,661 ms
130,108 KB
testcase_26 AC 1,665 ms
131,080 KB
testcase_27 AC 1,676 ms
130,224 KB
testcase_28 AC 1,668 ms
131,496 KB
testcase_29 AC 1,718 ms
131,060 KB
testcase_30 AC 1,688 ms
131,240 KB
testcase_31 AC 1,679 ms
130,120 KB
testcase_32 AC 1,719 ms
130,100 KB
testcase_33 AC 1,643 ms
130,040 KB
testcase_34 AC 39 ms
52,944 KB
testcase_35 AC 38 ms
52,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 全点対の距離、昇順で並べる
# popしてなければ両方pop
# 1とpopしていないbaloonであれば取り除く=pop
# TLEしたのでmain()を入れる

def main():
    N = int(input())
    XY = []
    for i in range(N):
        x, y = map(int, input().split())
        XY.append([x, y])

    d_list = []
    for i in range(N):
        for j in range(i+1, N):
            d = (XY[i][0]-XY[j][0])**2 + (XY[i][1]-XY[j][1])**2
            d_list.append((d, i, j))
    d_list.sort()

    pop = [0]*N
    ans = 0
    for d, i, j in d_list:
        if i == 0 and pop[j] == 0:
                pop[j] = 1
                ans += 1
        elif pop[i] == 0 and pop[j] == 0:
                pop[i] = 1
                pop[j] = 1

    print(ans)
    
main()
0