結果

問題 No.2438 Double Least Square
ユーザー ebi_flyebi_fly
提出日時 2023-08-12 00:40:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,243 bytes
コンパイル時間 1,949 ms
コンパイル使用メモリ 205,808 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 05:06:16
合計ジャッジ時間 5,160 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,s,n) for(int i = int(s); i < int(n); i++)

using i64 = std::int64_t;

template<class T>
bool chmin(T &a, T b) {
    if(a < b) return false;
    a = b;
    return true;
}

int main() {
    std::cout << std::fixed << std::setprecision(15);
    int n;
    i64 h;
    std::cin >> n >> h;
    std::vector<std::pair<i64,i64>> ps(n);
    for(auto &[x, y]: ps) {
        std::cin >> x >> y;
    }
    assert(n <= 25);
    using ld = long double;
    ld ans = std::numeric_limits<ld>::max();
    auto calc_score = [](const std::vector<i64> a) -> ld {
        if(a[2] == 0) {
            assert(a[1] == 0 && a[0] == 0);
            return 0;
        }
        return ld(a[0]) - ld(a[1] * a[1]) / ld(4 * a[2]);

    };
    rep(bit,0,1<<n) {
        std::vector<i64> u(3, 0), d(3, 0);
        rep(i,0,n) {
            auto [x, y] = ps[i];
            if((bit >> i) & 1) {
                u[0] += (y - h) * (y - h);
                u[1] += -2*x*(y-h);
                u[2] += x*x;
            }
            else {
                d[0] += y*y;
                d[1] += -2*x*y;
                d[2] += x*x;
            }
        }
        chmin(ans, calc_score(u) + calc_score(d));
    }
    std::cout << ans << '\n';
}
0