結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー codershifthcodershifth
提出日時 2015-07-29 14:13:32
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 1,719 bytes
コンパイル時間 1,526 ms
コンパイル使用メモリ 160,872 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-11-08 11:35:52
合計ジャッジ時間 5,153 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
6,780 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 40 ms
5,248 KB
testcase_03 AC 77 ms
5,708 KB
testcase_04 AC 123 ms
6,648 KB
testcase_05 AC 124 ms
6,652 KB
testcase_06 AC 129 ms
6,656 KB
testcase_07 AC 105 ms
6,528 KB
testcase_08 AC 107 ms
6,784 KB
testcase_09 AC 107 ms
6,528 KB
testcase_10 AC 110 ms
6,368 KB
testcase_11 AC 117 ms
6,444 KB
testcase_12 AC 113 ms
6,056 KB
testcase_13 AC 98 ms
6,396 KB
testcase_14 AC 101 ms
6,448 KB
testcase_15 AC 91 ms
6,032 KB
testcase_16 AC 110 ms
6,528 KB
testcase_17 AC 89 ms
6,528 KB
testcase_18 AC 75 ms
6,656 KB
testcase_19 AC 94 ms
6,648 KB
testcase_20 AC 77 ms
6,652 KB
testcase_21 AC 74 ms
6,648 KB
testcase_22 AC 65 ms
6,372 KB
testcase_23 AC 68 ms
6,400 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 4 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 18 ms
5,248 KB
testcase_29 AC 10 ms
5,248 KB
testcase_30 AC 4 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

typedef long long ll;
typedef unsigned long long ull;

#define FOR(i,a,b) for(int (i)=(a);i<(b);i++)
#define REP(i,n) FOR(i,0,n)
#define RANGE(vec) (vec).begin(),(vec).end()

using namespace std;


class CuttingStick1 {
public:
    void solve(void) {
            int N;
            cin>>N;
            vector<double> L(N);
            REP(i,N)
                cin>>L[i];
            ll K;
            cin>>K;
            // ある長さ D の棒を K 本つくれるならそれ以下の長さの棒も作れる (D をさらに分割すればよい)
            // よって二分探索すればよい

            double high = 1E+9;
            double low  = 1e-9;

            REP(_, 100)
            {
                if (abs(high-low) < 1e-9)
                    break;
                double mid = (high+low)*0.5;
                auto tmp = L;

                ll     k = 0;
                size_t i = 0;
                while (i < tmp.size())
                {
                    if (k >= K)
                        break;
                    if (tmp[i] < mid)
                        ++i;
                    else if (tmp[i] >= mid)
                    {
                        ll kk = tmp[i]/mid;
                        tmp[i] -= kk*mid;
                        k += kk;
                    }
                }
                if (k >= K)
                    low = mid;
                else
                    high = mid;
            }
            cout<<setprecision(20)<<low<<endl;
    }
};

#if 1
int main(int argc, char *argv[])
{
        ios::sync_with_stdio(false);
        auto obj = new CuttingStick1();
        obj->solve();
        delete obj;
        return 0;
}
#endif
0