結果

問題 No.2632 Center of Three Points in Lp Norm
ユーザー suisensuisen
提出日時 2024-02-16 23:44:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,096 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 76,152 KB
最終ジャッジ日時 2024-09-28 22:46:54
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
73,876 KB
testcase_01 WA -
testcase_02 AC 73 ms
74,012 KB
testcase_03 AC 75 ms
74,208 KB
testcase_04 AC 77 ms
73,648 KB
testcase_05 AC 75 ms
73,796 KB
testcase_06 AC 73 ms
74,092 KB
testcase_07 AC 71 ms
73,940 KB
testcase_08 AC 72 ms
74,248 KB
testcase_09 AC 71 ms
74,064 KB
testcase_10 AC 71 ms
74,824 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 72 ms
74,480 KB
testcase_14 WA -
testcase_15 AC 74 ms
74,744 KB
testcase_16 AC 76 ms
73,808 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 72 ms
74,416 KB
testcase_21 AC 71 ms
73,728 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 72 ms
74,012 KB
testcase_25 WA -
testcase_26 AC 71 ms
74,284 KB
testcase_27 AC 69 ms
74,952 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 72 ms
74,296 KB
testcase_31 AC 69 ms
74,964 KB
testcase_32 AC 72 ms
73,592 KB
testcase_33 AC 72 ms
73,792 KB
testcase_34 AC 58 ms
71,620 KB
testcase_35 AC 75 ms
75,292 KB
testcase_36 AC 71 ms
74,332 KB
testcase_37 AC 74 ms
73,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Fp = float

p = Fp(input())
ax, ay = map(Fp, input().split())
bx, by = map(Fp, input().split())
cx, cy = map(Fp, input().split())

t = Fp(2) / (Fp(3) + Fp(5) ** (Fp(1) / Fp(2)))

def norm(x1: Fp, y1: Fp, x2: Fp, y2: Fp):
    return (abs(x1 - x2) ** p + abs(y1 - y2) ** p) ** (Fp(1) / p)

def max_norm(x: Fp, y: Fp):
    a = norm(x, y, ax, ay)
    b = norm(x, y, bx, by)
    c = norm(x, y, cx, cy)
    return abs(a - b) ** 2 + abs(b - c) ** 2 + abs(c - a) ** 2

def bsearch_y(x: Fp):
    ly, ry = Fp(-1000000), Fp(1000000)
    for _ in range(100):
        mly = ly + t * (ry - ly)
        mry = ry - t * (ry - ly)

        if max_norm(x, mly) > max_norm(x, mry):
            ly = mly
        else:
            ry = mry
    
    return max_norm(x, ly), ly

def bsearch_x():
    lx, rx = Fp(-1000000), Fp(1000000)
    for _ in range(100):
        mlx = lx + t * (rx - lx)
        mrx = rx - t * (rx - lx)

        if bsearch_y(mlx)[0] > bsearch_y(mrx)[0]:
            lx = mlx
        else:
            rx = mrx
    
    return lx, bsearch_y(lx)[1]

x, y = bsearch_x()
print(f'{x:.20f} {y:.20f}')

0