結果

問題 No.1265 Balloon Survival
ユーザー tonnnura172tonnnura172
提出日時 2020-10-24 20:07:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,602 ms / 2,000 ms
コード長 1,213 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 73,052 KB
最終ジャッジ日時 2024-07-21 15:33:10
合計ジャッジ時間 19,220 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,136 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 33 ms
11,136 KB
testcase_03 AC 33 ms
11,136 KB
testcase_04 AC 34 ms
11,264 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 37 ms
11,264 KB
testcase_07 AC 31 ms
11,264 KB
testcase_08 AC 32 ms
11,264 KB
testcase_09 AC 32 ms
11,264 KB
testcase_10 AC 32 ms
11,264 KB
testcase_11 AC 32 ms
11,008 KB
testcase_12 AC 31 ms
11,264 KB
testcase_13 AC 32 ms
11,008 KB
testcase_14 AC 146 ms
18,560 KB
testcase_15 AC 117 ms
16,640 KB
testcase_16 AC 62 ms
13,056 KB
testcase_17 AC 751 ms
43,996 KB
testcase_18 AC 80 ms
14,208 KB
testcase_19 AC 64 ms
13,568 KB
testcase_20 AC 141 ms
18,560 KB
testcase_21 AC 314 ms
26,836 KB
testcase_22 AC 197 ms
20,864 KB
testcase_23 AC 214 ms
22,016 KB
testcase_24 AC 1,544 ms
72,148 KB
testcase_25 AC 1,561 ms
72,924 KB
testcase_26 AC 1,568 ms
73,032 KB
testcase_27 AC 1,541 ms
72,924 KB
testcase_28 AC 1,555 ms
73,020 KB
testcase_29 AC 1,552 ms
73,028 KB
testcase_30 AC 1,543 ms
73,028 KB
testcase_31 AC 1,542 ms
72,792 KB
testcase_32 AC 1,546 ms
72,916 KB
testcase_33 AC 1,602 ms
73,052 KB
testcase_34 AC 32 ms
11,136 KB
testcase_35 AC 31 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians, gcd
from itertools import accumulate, permutations, combinations, product, groupby, combinations_with_replacement
from operator import itemgetter, mul
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from bisect import bisect, bisect_left
from heapq import heappush, heappop
from functools import reduce
def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
def ZIP(n): return zip(*(MAP() for _ in range(n)))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

N = INT()
xy = [LIST() for _ in range(N)]

dist = []
for i, j in combinations(range(N), 2):
    x1, y1 = xy[i]
    x2, y2 = xy[j]
    d = (x1-x2)**2 + (y1-y2)**2
    dist.append((d, i, j))

dist.sort()

ans = 0
s = set()

for _, i, j in dist:
    if i in s or j in s:  # 既に爆発済み
        continue
    elif i == 0:  # 取り除く
        ans += 1
        s.add(j)
    else:  # 爆発
        s.add(i)
        s.add(j)

print(ans)
0