結果

問題 No.2632 Center of Three Points in Lp Norm
ユーザー NyaanNyaanNyaanNyaan
提出日時 2024-02-16 23:16:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,068 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 68,340 KB
最終ジャッジ日時 2024-09-28 21:58:26
合計ジャッジ時間 6,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,725 ms
67,768 KB
testcase_01 AC 1,702 ms
67,792 KB
testcase_02 AC 1,722 ms
68,308 KB
testcase_03 WA -
testcase_04 AC 1,717 ms
67,976 KB
testcase_05 AC 1,711 ms
67,296 KB
testcase_06 AC 1,716 ms
68,180 KB
testcase_07 WA -
testcase_08 AC 1,715 ms
67,668 KB
testcase_09 AC 1,710 ms
68,172 KB
testcase_10 AC 1,705 ms
67,544 KB
testcase_11 WA -
testcase_12 AC 1,725 ms
67,936 KB
testcase_13 WA -
testcase_14 AC 1,716 ms
68,340 KB
testcase_15 AC 1,705 ms
68,072 KB
testcase_16 AC 1,714 ms
67,920 KB
testcase_17 AC 1,712 ms
67,680 KB
testcase_18 AC 1,715 ms
67,916 KB
testcase_19 WA -
testcase_20 AC 1,723 ms
68,052 KB
testcase_21 AC 1,720 ms
67,552 KB
testcase_22 WA -
testcase_23 AC 1,724 ms
68,304 KB
testcase_24 AC 1,724 ms
67,768 KB
testcase_25 AC 1,736 ms
68,068 KB
testcase_26 AC 1,740 ms
67,912 KB
testcase_27 AC 1,738 ms
67,572 KB
testcase_28 AC 1,741 ms
67,296 KB
testcase_29 AC 1,735 ms
67,576 KB
testcase_30 AC 1,733 ms
67,960 KB
testcase_31 AC 1,721 ms
68,052 KB
testcase_32 AC 1,706 ms
68,052 KB
testcase_33 AC 1,722 ms
68,040 KB
testcase_34 AC 1,721 ms
67,928 KB
testcase_35 AC 1,714 ms
68,312 KB
testcase_36 AC 1,714 ms
67,972 KB
testcase_37 AC 1,712 ms
68,180 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

def check(X, Y):
    global ans, best
    cur = scipy.optimize.fmin(f, [X, Y], disp=False, maxiter=200, ftol=1e-7)
    if f(cur) < best:
        ans = cur
        best = f(cur)


for scale in range(0, 7):
    for X in [-(10**scale), 10**scale]:
        for Y in [-(10**scale), 10**scale]:
            check(X, Y)

dx = (ax + bx + cx) / 3
dy = (ay + by + cy) / 3

while time.time() - start < 1.2:
    scale = random.randint(1, 6)
    X = random.randint(-(10**scale), 10**scale) + dx
    Y = random.randint(-(10**scale), 10**scale) + dy
    check(X, Y)

print(*ans)
0