結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー focusfocus
提出日時 2018-01-12 15:18:17
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 669 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 63,848 KB
実行使用メモリ 12,268 KB
最終ジャッジ日時 2024-12-24 00:17:39
合計ジャッジ時間 59,192 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
10,784 KB
testcase_01 AC 2 ms
10,568 KB
testcase_02 AC 66 ms
10,572 KB
testcase_03 AC 119 ms
10,780 KB
testcase_04 AC 143 ms
10,832 KB
testcase_05 AC 144 ms
10,648 KB
testcase_06 AC 139 ms
10,772 KB
testcase_07 AC 165 ms
10,648 KB
testcase_08 AC 159 ms
10,832 KB
testcase_09 TLE -
testcase_10 AC 129 ms
5,452 KB
testcase_11 AC 132 ms
5,456 KB
testcase_12 AC 125 ms
5,452 KB
testcase_13 AC 148 ms
5,320 KB
testcase_14 AC 154 ms
5,452 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 117 ms
5,324 KB
testcase_23 TLE -
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 26 ms
5,248 KB
testcase_29 AC 14 ms
5,248 KB
testcase_30 AC 5 ms
10,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<cstdio>
using namespace std;
typedef long long ll;
ll K;
vector<ll> L;
bool split(double num){
    ll eda=0;
    for(int i=0;i<L.size();i++){
        eda+=L[i]/num;
    }
    if(eda>=K)  return true;
    return false;
}
int main(){
    double lb=0,ub=0,mid;
    ll N,x;
    cin >> N;
    while(N--){
        cin >> x;
        L.push_back(x);
        if(ub<x)    ub = x;
    }
    cin >> K;
    do{
        mid=(lb+ub)/2;
        if(split(mid))    lb=mid;
        else    ub=mid;
    // cout << lb <<" "<< ub <<" "<< mid << endl;
    }while(ub-lb>0.0000000001);
    printf("%.10lf\n",lb);
    return 0;
}
0