結果

問題 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
コンパイル時間 2,096 ms
コンパイル使用メモリ 204,748 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-05 05:10:08
合計ジャッジ時間 32,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 6 ms
5,376 KB
testcase_02 AC 10 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 7 ms
5,376 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,496 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 1,379 ms
5,376 KB
testcase_23 AC 1,480 ms
5,376 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1,507 ms
5,376 KB
testcase_28 AC 1,583 ms
5,376 KB
testcase_29 AC 1,561 ms
5,376 KB
testcase_30 AC 7 ms
5,376 KB
testcase_31 AC 4 ms
5,376 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