結果

問題 No.2632 Center of Three Points in Lp Norm
ユーザー maspymaspy
提出日時 2024-02-16 23:45:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 774 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 67,272 KB
最終ジャッジ日時 2024-02-16 23:46:16
合計ジャッジ時間 50,777 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,223 ms
67,244 KB
testcase_01 AC 1,209 ms
67,228 KB
testcase_02 AC 1,177 ms
67,260 KB
testcase_03 AC 1,218 ms
67,228 KB
testcase_04 AC 1,222 ms
67,240 KB
testcase_05 WA -
testcase_06 AC 1,247 ms
67,248 KB
testcase_07 AC 1,239 ms
67,228 KB
testcase_08 AC 1,229 ms
67,240 KB
testcase_09 AC 1,273 ms
67,240 KB
testcase_10 AC 1,202 ms
67,240 KB
testcase_11 WA -
testcase_12 AC 1,237 ms
67,248 KB
testcase_13 AC 1,204 ms
67,240 KB
testcase_14 WA -
testcase_15 AC 1,233 ms
67,240 KB
testcase_16 WA -
testcase_17 AC 1,260 ms
67,240 KB
testcase_18 AC 1,223 ms
67,228 KB
testcase_19 WA -
testcase_20 AC 1,250 ms
67,252 KB
testcase_21 AC 1,197 ms
67,228 KB
testcase_22 AC 1,248 ms
67,240 KB
testcase_23 WA -
testcase_24 AC 1,263 ms
67,228 KB
testcase_25 WA -
testcase_26 AC 1,208 ms
67,228 KB
testcase_27 AC 1,202 ms
67,240 KB
testcase_28 WA -
testcase_29 AC 1,208 ms
67,228 KB
testcase_30 AC 1,214 ms
67,228 KB
testcase_31 AC 1,220 ms
67,244 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,179 ms
67,228 KB
testcase_35 WA -
testcase_36 AC 1,188 ms
67,228 KB
testcase_37 AC 1,216 ms
67,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from scipy import optimize

# 高精度の浮動小数点数を使用する
p = np.float64(input())
points = []
for _ in range(3):
    x, y = map(np.float64, input().split())
    points.append((x, y))

def Lp(x, y):
    x = np.abs(x)
    y = np.abs(y)
    ma = max(x, y)
    if ma < 1e-9:
        return np.float64(1e-9)  # 非常に小さな値を返す
    x /= ma
    y /= ma
    x = x ** p
    y = y ** p
    return (x + y) ** (1.0 / p) * ma

def f(point):
    x, y = point
    distances = [Lp(x - px, y - py) for px, py in points]
    d1, d2, d3 = distances
    return (d2 - d1) ** 2 + (d3 - d1) ** 2 + (d3 - d2) ** 2

options={"maxiter":100000}
x_min = optimize.minimize(f, x0=[0, 0], method='L-BFGS-B', tol=1e-12, options=options)

print(*x_min.x)
0