結果

問題 No.1265 Balloon Survival
ユーザー mkawa2mkawa2
提出日時 2020-11-08 17:25:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,706 ms / 2,000 ms
コード長 1,083 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 81,424 KB
最終ジャッジ日時 2024-07-22 15:26:16
合計ジャッジ時間 20,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 34 ms
10,624 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 34 ms
10,880 KB
testcase_08 AC 34 ms
10,752 KB
testcase_09 AC 33 ms
10,624 KB
testcase_10 AC 34 ms
10,752 KB
testcase_11 AC 33 ms
10,624 KB
testcase_12 AC 33 ms
10,752 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 163 ms
18,304 KB
testcase_15 AC 123 ms
16,256 KB
testcase_16 AC 60 ms
12,672 KB
testcase_17 AC 812 ms
46,560 KB
testcase_18 AC 80 ms
13,824 KB
testcase_19 AC 65 ms
13,056 KB
testcase_20 AC 151 ms
18,176 KB
testcase_21 AC 366 ms
27,580 KB
testcase_22 AC 207 ms
20,864 KB
testcase_23 AC 240 ms
22,016 KB
testcase_24 AC 1,706 ms
81,196 KB
testcase_25 AC 1,686 ms
80,788 KB
testcase_26 AC 1,666 ms
81,424 KB
testcase_27 AC 1,599 ms
80,556 KB
testcase_28 AC 1,623 ms
80,732 KB
testcase_29 AC 1,665 ms
81,196 KB
testcase_30 AC 1,608 ms
81,172 KB
testcase_31 AC 1,653 ms
80,660 KB
testcase_32 AC 1,547 ms
81,064 KB
testcase_33 AC 1,644 ms
81,300 KB
testcase_34 AC 32 ms
10,752 KB
testcase_35 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

# input=sys.stdin.buffer.readline
input=sys.stdin.readline

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(input())
def MI(): return map(int, input().split())
def MI1(): return map(int1, input().split())
def LI(): return list(map(int, input().split()))
def LI1(): return list(map(int1, input().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return input()[:-1]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

n=II()
xy=LLI(n)
dij=[]
for i,(x0,y0) in enumerate(xy):
    for j,(x1,y1) in enumerate(xy[:i]):
        dij.append(((x0-x1)**2+(y0-y1)**2,i,j))
dij.sort()
fin=[False]*n
ans=0
for d,i,j in dij:
    if fin[i] or fin[j]:continue
    if i==0 or j==0:
        fin[i+j]=True
        ans+=1
        n-=1
    else:
        fin[i]=fin[j]=True
        n-=2
    if n==1:break

print(ans)
0