結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,392 ms
66,884 KB
testcase_01 AC 1,366 ms
67,000 KB
testcase_02 AC 1,380 ms
66,984 KB
testcase_03 WA -
testcase_04 AC 1,377 ms
66,892 KB
testcase_05 AC 1,372 ms
66,892 KB
testcase_06 AC 1,416 ms
66,988 KB
testcase_07 WA -
testcase_08 AC 1,381 ms
67,000 KB
testcase_09 AC 1,435 ms
66,984 KB
testcase_10 AC 1,401 ms
66,884 KB
testcase_11 WA -
testcase_12 AC 1,448 ms
66,892 KB
testcase_13 WA -
testcase_14 AC 1,479 ms
66,884 KB
testcase_15 AC 1,501 ms
66,976 KB
testcase_16 AC 1,549 ms
66,892 KB
testcase_17 AC 1,462 ms
66,892 KB
testcase_18 AC 1,401 ms
66,884 KB
testcase_19 AC 1,398 ms
66,892 KB
testcase_20 AC 1,409 ms
66,892 KB
testcase_21 AC 1,397 ms
66,892 KB
testcase_22 WA -
testcase_23 AC 1,395 ms
66,884 KB
testcase_24 AC 1,389 ms
66,984 KB
testcase_25 AC 1,387 ms
66,884 KB
testcase_26 AC 1,389 ms
66,976 KB
testcase_27 AC 1,398 ms
66,900 KB
testcase_28 AC 1,401 ms
66,892 KB
testcase_29 AC 1,410 ms
66,892 KB
testcase_30 AC 1,410 ms
66,884 KB
testcase_31 AC 1,415 ms
66,884 KB
testcase_32 AC 1,396 ms
66,884 KB
testcase_33 AC 1,390 ms
66,892 KB
testcase_34 AC 1,397 ms
66,892 KB
testcase_35 AC 1,390 ms
66,892 KB
testcase_36 AC 1,390 ms
66,912 KB
testcase_37 AC 1,395 ms
123,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import scipy
import time
import random

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


def my_pow(x):
    return np.abs(x) ** p


def f(point):
    x, y = point
    anorm = my_pow(ax - x) + my_pow(ay - y)
    bnorm = my_pow(bx - x) + my_pow(by - y)
    cnorm = my_pow(cx - x) + my_pow(cy - y)
    return max(anorm, bnorm, cnorm) - min(anorm, bnorm, cnorm)


start = time.time()

ans = []
best = 1e9

for X in [-(10**6), 10**6]:
    for Y in [-(10**6), 10**6]:
        cur = scipy.optimize.fmin(f, [X, Y], disp=False, maxiter=1000, ftol=1e-8)
        if f(cur) < best:
            ans = cur
            best = f(cur)

while time.time() - start < 0.9:
    X = random.randint(-(10**6), 10**6)
    Y = random.randint(-(10**6), 10**6)
    cur = scipy.optimize.fmin(f, [X, Y], disp=False, maxiter=1000, ftol=1e-8)
    if f(cur) < best:
        ans = cur
        best = f(cur)

print(*ans)
0