結果

問題 No.2632 Center of Three Points in Lp Norm
ユーザー NyaanNyaanNyaanNyaan
提出日時 2024-02-16 23:47:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,800 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 67,092 KB
最終ジャッジ日時 2024-02-16 23:50:15
合計ジャッジ時間 75,678 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,892 ms
67,024 KB
testcase_01 AC 1,891 ms
67,092 KB
testcase_02 AC 1,872 ms
67,060 KB
testcase_03 WA -
testcase_04 TLE -
testcase_05 AC 1,774 ms
67,048 KB
testcase_06 AC 1,796 ms
67,060 KB
testcase_07 AC 1,761 ms
67,024 KB
testcase_08 AC 1,758 ms
67,088 KB
testcase_09 AC 1,790 ms
67,060 KB
testcase_10 AC 1,761 ms
67,024 KB
testcase_11 WA -
testcase_12 AC 1,751 ms
67,004 KB
testcase_13 AC 1,771 ms
67,080 KB
testcase_14 AC 1,797 ms
67,032 KB
testcase_15 AC 1,772 ms
67,076 KB
testcase_16 AC 1,764 ms
67,000 KB
testcase_17 AC 1,767 ms
67,000 KB
testcase_18 AC 1,771 ms
67,016 KB
testcase_19 AC 1,759 ms
67,012 KB
testcase_20 AC 1,786 ms
67,000 KB
testcase_21 AC 1,798 ms
67,048 KB
testcase_22 AC 1,754 ms
67,008 KB
testcase_23 AC 1,761 ms
67,016 KB
testcase_24 AC 1,800 ms
67,076 KB
testcase_25 AC 1,760 ms
67,000 KB
testcase_26 AC 1,770 ms
67,068 KB
testcase_27 AC 1,758 ms
67,048 KB
testcase_28 AC 1,755 ms
67,016 KB
testcase_29 AC 1,744 ms
67,048 KB
testcase_30 AC 1,767 ms
67,044 KB
testcase_31 AC 1,764 ms
67,008 KB
testcase_32 AC 1,769 ms
67,000 KB
testcase_33 AC 1,791 ms
67,048 KB
testcase_34 AC 1,761 ms
67,000 KB
testcase_35 AC 1,785 ms
67,000 KB
testcase_36 AC 1,761 ms
67,012 KB
testcase_37 AC 1,793 ms
67,080 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())

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

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 pow(max(anorm, bnorm, cnorm) - min(anorm, bnorm, cnorm), 1.0 / p)

def f2(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=500, ftol=1e-12)
    if f(cur) < best:
        ans = cur
        best = f(cur)

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

for scale in range(5, 7):
    for X in [-(10**scale), 10**scale]:
        for Y in [-(10**scale), 10**scale]:
            if time.time() - start < 1.3:
                check(X, Y)
                check(X + dx, Y + dy)

for scale in range(5, 7):
    for X in [-(10**scale), 10**scale]:
        for Y in [-(10**scale), 10**scale]:
            if time.time() - start < 1.3:
                check2(X + dx, Y + dy)

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

print("{:.10f} {:.10f}".format(ans[0], ans[1]))
0