結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー otsnskotsnsk
提出日時 2014-12-27 20:03:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 872 bytes
コンパイル時間 3,317 ms
コンパイル使用メモリ 61,784 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 11:23:24
合計ジャッジ時間 2,996 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 16 ms
5,248 KB
testcase_03 AC 31 ms
5,248 KB
testcase_04 AC 38 ms
5,248 KB
testcase_05 AC 38 ms
5,248 KB
testcase_06 AC 38 ms
5,248 KB
testcase_07 AC 42 ms
5,248 KB
testcase_08 AC 41 ms
5,248 KB
testcase_09 AC 41 ms
5,248 KB
testcase_10 AC 34 ms
5,248 KB
testcase_11 AC 36 ms
5,248 KB
testcase_12 AC 32 ms
5,248 KB
testcase_13 AC 37 ms
5,248 KB
testcase_14 AC 39 ms
5,248 KB
testcase_15 AC 36 ms
5,248 KB
testcase_16 AC 37 ms
5,248 KB
testcase_17 AC 37 ms
5,248 KB
testcase_18 AC 38 ms
5,248 KB
testcase_19 AC 41 ms
5,248 KB
testcase_20 AC 41 ms
5,248 KB
testcase_21 AC 41 ms
5,248 KB
testcase_22 AC 34 ms
5,248 KB
testcase_23 AC 36 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 8 ms
5,248 KB
testcase_29 AC 5 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>

#define FORR(i,b,e) for(int i=(b);i<(int)(e);++i)
#define FOR(i,e) FORR(i,0,e)
#define dump(var) cerr << #var ": " << var << "\n"
#define dumpc(con) for(auto& e: con) cerr << e << " "; cerr<<"\n"

typedef long long ll;
typedef unsigned long long ull;

using namespace std;

int L[200010];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    int N;
    ll K;
    double lmax = 0;
    cin >> N;
    FOR(i, N) {
        cin >> L[i];
        lmax += L[i];
    }
    cin >> K;
    lmax /= K;

    double l = 0.0, u = lmax, m;
    FOR(i, 50) {
        m = (l+u)/2;
        ll cnt = 0;
        FOR(j, N) {
            cnt += (ll)(L[j]/m);
        }
        if (cnt < K) {
            u = m;
        }
        else {
            l = m;
        }
    }
    cout << fixed << setprecision(10) << m << endl;
    
    return 0;
}
0