結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2022-12-20 19:13:07
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 677 bytes
コンパイル時間 997 ms
コンパイル使用メモリ 143,972 KB
実行使用メモリ 13,764 KB
最終ジャッジ日時 2024-11-18 02:00:57
合計ジャッジ時間 152,451 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 4 ms
11,300 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
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 339 ms
6,816 KB
testcase_26 AC 125 ms
6,820 KB
testcase_27 AC 86 ms
6,816 KB
testcase_28 AC 2,805 ms
6,816 KB
testcase_29 AC 1,394 ms
6,820 KB
testcase_30 AC 360 ms
13,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>

using namespace std;

long long N, K;
vector<long double> L;

bool solve(long double X){
    long long cnt=0;
    for (int i=0; i<N; i++) cnt += floor(L[i]/X);
    return cnt >= K;
}

int main(){
    cin >> N;
    L.resize(N);
    for (int i=0; i<N; i++) cin >> L[i];
    cin >> K;

    long double l=0, r=1e9, c;
    for (int i=0; i<1000; i++){
        c = (l+r)/2;
        if (solve(c)) l=c;
        else r=c;
    }

    cout << setprecision(18) << l << endl;

    return 0;
}
0