結果
問題 | No.306 さいたま2008 |
ユーザー |
![]() |
提出日時 | 2022-06-24 03:03:10 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 105 ms / 2,000 ms |
コード長 | 2,433 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2025-02-14 12:18:08 |
合計ジャッジ時間 | 3,834 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
import bisect import copy import decimal import fractions import heapq import itertools import math import random import sys import time from collections import Counter,deque,defaultdict from functools import lru_cache,reduce from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max def _heappush_max(heap,item): heap.append(item) heapq._siftdown_max(heap, 0, len(heap)-1) def _heappushpop_max(heap, item): if heap and item < heap[0]: item, heap[0] = heap[0], item heapq._siftup_max(heap, 0) return item from math import gcd as GCD read=sys.stdin.read readline=sys.stdin.readline readlines=sys.stdin.readlines def Tersect(L,R,f,eps=1e-12,cnt=0,maximize=False): f_L,f_R=f(L),f(R) if cnt: for _ in range(cnt): l,r=(2*L+R)/3,(L+2*R)/3 f_l,f_r=f(l),f(r) if maximize: if f_l>=f_r>=f_R: R=r f_R=f_r elif f_L<=f_l<=f_r: L=l f_L=f_l else: L,R=l,r f_L,f_R=f_l,f_r else: if f_l<=f_r<=f_R: R=r f_R=f_r elif f_L>=f_l>=f_r: L=l f_L=f_l else: L,R=l,r f_L,f_R=f_l,f_r else: while (R-L)/max(L,R,1)>=eps: l,r=(2*L+R)/3,(L+2*R)/3 f_l,f_r=f(l),f(r) if maximize: if f_l>=f_r>=f_R: R=r f_R=f_r elif f_L<=f_l<=f_r: L=l f_L=f_l else: L,R=l,r f_L,f_R=f_l,f_r else: if f_l<=f_r<=f_R: R=r f_R=f_r elif f_L>=f_l>=f_r: L=l f_L=f_l else: L,R=l,r f_L,f_R=f_l,f_r return L xa,ya=map(int,readline().split()) xb,yb=map(int,readline().split()) xa=decimal.Decimal(xa) ya=decimal.Decimal(ya) xb=decimal.Decimal(xb) yb=decimal.Decimal(yb) def f(y): return (xa**2+(ya-y)**2)**decimal.Decimal(0.5)+(xb**2+(yb-y)**2)**decimal.Decimal(0.5) ans=Tersect(decimal.Decimal(-1<<30),decimal.Decimal(1<<30),f) print(ans)