結果

問題 No.2632 Center of Three Points in Lp Norm
ユーザー NyaanNyaanNyaanNyaan
提出日時 2024-02-16 23:36:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,151 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 68,332 KB
最終ジャッジ日時 2024-09-28 22:40:18
合計ジャッジ時間 75,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,851 ms
67,412 KB
testcase_01 AC 1,859 ms
67,724 KB
testcase_02 AC 1,861 ms
67,604 KB
testcase_03 AC 1,859 ms
68,164 KB
testcase_04 AC 1,858 ms
67,676 KB
testcase_05 AC 1,854 ms
67,968 KB
testcase_06 AC 1,868 ms
68,108 KB
testcase_07 TLE -
testcase_08 AC 1,860 ms
67,984 KB
testcase_09 AC 1,859 ms
68,120 KB
testcase_10 AC 1,842 ms
68,084 KB
testcase_11 AC 1,833 ms
67,480 KB
testcase_12 AC 1,833 ms
68,232 KB
testcase_13 AC 1,852 ms
67,732 KB
testcase_14 AC 1,912 ms
67,836 KB
testcase_15 AC 1,831 ms
67,472 KB
testcase_16 AC 1,845 ms
67,796 KB
testcase_17 AC 1,827 ms
67,568 KB
testcase_18 AC 1,829 ms
67,696 KB
testcase_19 AC 1,846 ms
67,964 KB
testcase_20 AC 1,833 ms
67,956 KB
testcase_21 AC 1,825 ms
68,092 KB
testcase_22 AC 1,831 ms
67,820 KB
testcase_23 AC 1,875 ms
67,696 KB
testcase_24 AC 1,852 ms
68,108 KB
testcase_25 AC 1,846 ms
67,688 KB
testcase_26 AC 1,849 ms
67,852 KB
testcase_27 AC 1,865 ms
68,180 KB
testcase_28 AC 1,847 ms
67,440 KB
testcase_29 AC 1,851 ms
67,968 KB
testcase_30 AC 1,887 ms
67,528 KB
testcase_31 AC 1,886 ms
67,596 KB
testcase_32 AC 1,885 ms
67,960 KB
testcase_33 AC 1,892 ms
67,816 KB
testcase_34 AC 1,877 ms
67,700 KB
testcase_35 AC 1,861 ms
68,332 KB
testcase_36 AC 1,872 ms
67,932 KB
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)

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)


for scale in range(5, 7):
    for X in [-(10**scale), 10**scale]:
        for Y in [-(10**scale), 10**scale]:
            check(X, Y)
            check(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