結果

問題 No.2438 Double Least Square
ユーザー noya2noya2
提出日時 2023-08-15 15:32:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 684 bytes
コンパイル時間 1,810 ms
コンパイル使用メモリ 204,828 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-26 23:08:49
合計ジャッジ時間 33,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,816 KB
testcase_01 AC 7 ms
6,820 KB
testcase_02 AC 11 ms
6,820 KB
testcase_03 AC 5 ms
6,816 KB
testcase_04 AC 4 ms
6,820 KB
testcase_05 WA -
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 7 ms
6,820 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1,476 ms
6,820 KB
testcase_21 WA -
testcase_22 AC 1,436 ms
6,820 KB
testcase_23 AC 1,532 ms
6,820 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1,521 ms
6,820 KB
testcase_28 AC 1,531 ms
6,820 KB
testcase_29 AC 1,517 ms
6,820 KB
testcase_30 AC 6 ms
6,820 KB
testcase_31 AC 3 ms
6,820 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
Wrong Answer
*/

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;

int main(){
    ll n, h; cin >> n >> h;
    ld ans = 1e18;
    vector<ll> xs(n), ys(n);
    for (int i = 0; i < n; i++) cin >> xs[i] >> ys[i];
    ll rx = 0;
    for (int i = 0; i < n; i++) rx = max(rx,xs[i]);
    for (int fy = 0; fy <= 500; fy++) for (int gy = 0; gy <= 500; gy++){
        ld cur = 0;
        for (int i = 0; i < n; i++){
            ld fv = ys[i] - ld(fy-h)/rx*xs[i] - h;
            ld gv = ys[i] - ld(gy)/rx*xs[i];
            cur += min(fv*fv,gv*gv);
        }
        ans = min(ans,cur);
    }
    cout << fixed << setprecision(15) << ans << endl;
}
0