結果

問題 No.2438 Double Least Square
ユーザー kotatsugamekotatsugame
提出日時 2023-08-18 23:44:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 363 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 72,852 KB
最終ジャッジ日時 2024-05-06 06:34:23
合計ジャッジ時間 6,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,583 ms
68,112 KB
testcase_02 AC 1,560 ms
67,992 KB
testcase_03 AC 1,581 ms
68,244 KB
testcase_04 WA -
testcase_05 AC 1,750 ms
67,716 KB
testcase_06 AC 1,585 ms
67,592 KB
testcase_07 AC 1,577 ms
68,120 KB
testcase_08 AC 1,790 ms
68,380 KB
testcase_09 AC 1,885 ms
68,112 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import scipy.optimize as opt

(N,),(H,),*xy=[list(map(int,s.split())) for s in open(0)]

def f(a):
    a1,a2=a
    ret=0
    for x,y in xy:
        ret+=min((y-a1*x)**2,(y-a2*x-H)**2)
    return ret

#print(opt.dual_annealing(f,[(0,500),(-500,500)],maxiter=500).fun)
print(opt.basinhopping(f,(0,0)).fun)
#print(opt.differential_evolution(f,[(0,500),(-500,500)]))
0