結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
11,428 KB
testcase_02 AC 46 ms
6,820 KB
testcase_03 AC 85 ms
11,428 KB
testcase_04 AC 115 ms
11,556 KB
testcase_05 AC 114 ms
11,296 KB
testcase_06 TLE -
testcase_07 AC 117 ms
11,300 KB
testcase_08 AC 117 ms
11,428 KB
testcase_09 TLE -
testcase_10 AC 104 ms
13,760 KB
testcase_11 AC 110 ms
11,428 KB
testcase_12 TLE -
testcase_13 AC 107 ms
11,680 KB
testcase_14 AC 111 ms
11,424 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 5 ms
6,816 KB
testcase_26 AC 3 ms
6,820 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 21 ms
6,820 KB
testcase_29 AC 12 ms
6,820 KB
testcase_30 AC 4 ms
11,424 KB
権限があれば一括ダウンロードができます

ソースコード

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