結果
問題 | No.1265 Balloon Survival |
ユーザー | terasa |
提出日時 | 2022-05-30 23:12:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,931 ms / 2,000 ms |
コード長 | 1,264 bytes |
コンパイル時間 | 198 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 146,144 KB |
最終ジャッジ日時 | 2024-09-21 00:55:24 |
合計ジャッジ時間 | 20,791 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
54,656 KB |
testcase_01 | AC | 43 ms
54,912 KB |
testcase_02 | AC | 44 ms
54,912 KB |
testcase_03 | AC | 47 ms
55,296 KB |
testcase_04 | AC | 48 ms
55,040 KB |
testcase_05 | AC | 46 ms
55,296 KB |
testcase_06 | AC | 47 ms
55,040 KB |
testcase_07 | AC | 46 ms
54,528 KB |
testcase_08 | AC | 46 ms
54,912 KB |
testcase_09 | AC | 45 ms
54,912 KB |
testcase_10 | AC | 45 ms
54,912 KB |
testcase_11 | AC | 46 ms
55,296 KB |
testcase_12 | AC | 47 ms
55,296 KB |
testcase_13 | AC | 46 ms
54,528 KB |
testcase_14 | AC | 190 ms
83,328 KB |
testcase_15 | AC | 151 ms
81,232 KB |
testcase_16 | AC | 95 ms
77,952 KB |
testcase_17 | AC | 737 ms
109,752 KB |
testcase_18 | AC | 135 ms
79,616 KB |
testcase_19 | AC | 117 ms
78,300 KB |
testcase_20 | AC | 186 ms
83,328 KB |
testcase_21 | AC | 422 ms
90,696 KB |
testcase_22 | AC | 197 ms
85,340 KB |
testcase_23 | AC | 243 ms
86,164 KB |
testcase_24 | AC | 1,814 ms
146,144 KB |
testcase_25 | AC | 1,931 ms
146,048 KB |
testcase_26 | AC | 1,479 ms
145,664 KB |
testcase_27 | AC | 1,122 ms
143,872 KB |
testcase_28 | AC | 1,378 ms
144,256 KB |
testcase_29 | AC | 1,675 ms
145,392 KB |
testcase_30 | AC | 1,475 ms
144,000 KB |
testcase_31 | AC | 1,793 ms
145,016 KB |
testcase_32 | AC | 1,329 ms
144,640 KB |
testcase_33 | AC | 1,426 ms
144,000 KB |
testcase_34 | AC | 62 ms
62,592 KB |
testcase_35 | AC | 51 ms
54,400 KB |
ソースコード
import sys import pypyjit import itertools import heapq import math from collections import deque, defaultdict import bisect input = sys.stdin.readline sys.setrecursionlimit(10 ** 6) pypyjit.set_param('max_unroll_recursion=-1') def index_lt(a, x): 'return largest index s.t. A[i] < x or -1 if it does not exist' return bisect.bisect_left(a, x) - 1 def index_le(a, x): 'return largest index s.t. A[i] <= x or -1 if it does not exist' return bisect.bisect_right(a, x) - 1 def index_gt(a, x): 'return smallest index s.t. A[i] > x or len(a) if it does not exist' return bisect.bisect_right(a, x) def index_ge(a, x): 'return smallest index s.t. A[i] >= x or len(a) if it does not exist' return bisect.bisect_left(a, x) N = int(input()) C = [tuple(map(int, input().split())) for _ in range(N)] h = [] for i in range(N): for j in range(i + 1, N): xi, yi = C[i] xj, yj = C[j] d = (xi - xj) ** 2 + (yi - yj) ** 2 heapq.heappush(h, (d, (i, j))) S = {i for i in range(N)} ans = 0 while len(S) > 1: _, (a, b) = heapq.heappop(h) if a in S and b in S: if a == 0: S.remove(b) ans += 1 else: S.remove(a) S.remove(b) print(ans)