結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー xuzijian629xuzijian629
提出日時 2018-11-02 01:19:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 746 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 203,016 KB
実行使用メモリ 11,680 KB
最終ジャッジ日時 2024-04-30 15:08:59
合計ジャッジ時間 15,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = int64_t;
using vi = vector<i64>;
using vvi = vector<vi>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    cout.setf(ios::fixed);
    cout.precision(20);
    int n;
    cin >> n;
    vi ls(n);
    for (int i = 0; i < n; i++) {
        cin >> ls[i];
    }

    i64 k;
    cin >> k;

    auto ok = [&](double a) {
        i64 cnt = 0;
        for (i64 l: ls) {
            cnt += floor(l / a);
        }
        return cnt >= k;
    };

    double l = 0, r = 1e9 + 1;
    while (l < r - 1e-12) {
        double m = (l + r) / 2;
        if (ok(m)) {
            l = m;
        } else {
            r = m;
        }
    }
    cout << l << endl;
}
0