結果

問題 No.2632 Center of Three Points in Lp Norm
ユーザー maspymaspy
提出日時 2024-02-16 23:37:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 614 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 70,172 KB
最終ジャッジ日時 2024-09-28 22:41:20
合計ジャッジ時間 49,518 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,194 ms
67,988 KB
testcase_01 AC 1,195 ms
68,004 KB
testcase_02 AC 1,194 ms
68,260 KB
testcase_03 AC 1,182 ms
69,924 KB
testcase_04 AC 1,199 ms
68,140 KB
testcase_05 WA -
testcase_06 AC 1,200 ms
68,128 KB
testcase_07 AC 1,181 ms
68,264 KB
testcase_08 AC 1,172 ms
68,400 KB
testcase_09 AC 1,219 ms
69,404 KB
testcase_10 AC 1,205 ms
68,508 KB
testcase_11 WA -
testcase_12 AC 1,177 ms
69,292 KB
testcase_13 AC 1,187 ms
68,136 KB
testcase_14 WA -
testcase_15 AC 1,177 ms
70,168 KB
testcase_16 WA -
testcase_17 AC 1,160 ms
67,996 KB
testcase_18 AC 1,173 ms
68,276 KB
testcase_19 WA -
testcase_20 AC 1,198 ms
67,620 KB
testcase_21 AC 1,190 ms
68,388 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,209 ms
67,628 KB
testcase_25 WA -
testcase_26 AC 1,190 ms
68,004 KB
testcase_27 AC 1,192 ms
68,148 KB
testcase_28 WA -
testcase_29 AC 1,182 ms
68,260 KB
testcase_30 AC 1,211 ms
69,424 KB
testcase_31 AC 1,194 ms
68,144 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,181 ms
68,380 KB
testcase_35 WA -
testcase_36 AC 1,173 ms
68,016 KB
testcase_37 AC 1,194 ms
67,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scipy
from scipy import optimize

p = float(input())
x1, y1 = map(float, input().split())
x2, y2 = map(float, input().split())
x3, y3 = map(float, input().split())

def Lp(x,y):
    x = abs(x)
    y = abs(y)
    ma = max(x,y)
    if ma<1e-9:
        return 0
    x /= ma
    y /= ma
    x = x ** p
    y = y ** p
    return (x+y)**(1.0/p)*ma

def f(point):
    x, y = point
    d1 = Lp(x-x1,y-y1)
    d2 = Lp(x-x2,y-y2)
    d3 = Lp(x-x3,y-y3)
    return (d2 - d1) ** 2 + (d3 - d1) ** 2 + (d3 - d2) ** 2

options = {'maxiter': 10000}
x_min = optimize.minimize(f, x0=[0, 0], options=options)

print(*x_min.x)
0