結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー SlephySlephy
提出日時 2022-05-06 17:41:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,799 bytes
コンパイル時間 1,826 ms
コンパイル使用メモリ 201,972 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 18:57:43
合計ジャッジ時間 6,603 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// 相対誤差に応じて二分探索を終了できるように改良
// とりあえず、doulbe 型のみの対応
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = (int)1e9 + 1001010;
const ll llINF = (ll)4e18 + 11000010;
#define ALL(x) x.begin(),x.end()
#define RALL(x) x.rbegin(),x.rend()
ll ceil(ll a, ll b){return (a+b-1) / b;};
// ================================== ここまでテンプレ ==================================

// とある条件を満たす区間の境界を見つける
// 探索区間は [ok, ng) または (ng, ok]
// ok はつねに「とある条件」を満たす
// ng はつねに「とある条件」を満たさない
// 「とある条件」を満たすかどうかは、judge関数によって求められる
template<class Judgement>
double Binary_Search(double ok, double ng, Judgement judge, double tolerance = 1){
    // assert(!is_integral_v<double> || tolerance == 1);
    while((fabs(ok - ng) > tolerance) && (fabs(ok - ng) > tolerance * fabs(ok))){
        double mid;
        // if(is_integral_v<double>){
        //     if(ok > 0 ^ ng > 0) mid = ok + (ng - ok)/2;
        //     else mid = (ok + ng)/2;
        // }
        // else mid = (ok + ng) * 0.5;
        mid = (ok + ng) * 0.5;

        if(judge(mid)) ok = mid;
        else ng = mid;
    }
    return ok;
};

int main(){
    int n; cin >> n;
    vector<double> l(n);
    for(int i = 0; i < n; i++) cin >> l[i];
    ll k; cin >> k;

    auto judge = [&](double mid) -> bool{
        if(mid <= 0) return true;
        int count = 0;
        for(int i = 0; i < n; i++){
            count += floor(l[i] / mid);
        }
        return (count >= k);
    };

    double ans = Binary_Search(-1.0, 1e12, judge, 1e-10);
    printf("%.12lf\n", ans);
    return 0;
}
0