結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー なおなお
提出日時 2014-11-17 00:40:48
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 456 ms / 5,000 ms
コード長 762 bytes
コンパイル時間 1,289 ms
コンパイル使用メモリ 164,828 KB
実行使用メモリ 9,820 KB
最終ジャッジ日時 2024-06-10 09:15:33
合計ジャッジ時間 7,167 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 390 ms
9,684 KB
testcase_01 AC 408 ms
9,820 KB
testcase_02 AC 405 ms
9,692 KB
testcase_03 AC 406 ms
9,820 KB
testcase_04 AC 456 ms
9,820 KB
testcase_05 AC 402 ms
9,692 KB
testcase_06 AC 401 ms
9,488 KB
testcase_07 AC 408 ms
9,648 KB
testcase_08 AC 374 ms
9,200 KB
testcase_09 AC 413 ms
9,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const double EPS = 1e-9;
#define REP(i, n)           for(int(i)=0;(i)<(n);++(i))

int L[100010],D[100010];
double K[500010];

int main(){
    int N; cin >> N;
    REP(i,N) cin >> L[i];

    priority_queue<pair<double,int> > q;
    REP(i,N){
        q.push(make_pair(L[i],i));
        D[i] = 1;
    }
    REP(i,500001){
        auto v = q.top(); q.pop();
        int j = v.second; // index;
        double k = v.first; // L[j]/D[j]
        K[i+1] = k;
        D[j]++;
        q.push(make_pair(1.*L[j]/D[j],j));
    }

    ll Q; cin >> Q;
    REP(i,Q){
        int Ki; cin >> Ki;
        cout << fixed << setprecision(15) << K[Ki] << endl;
    }
    return 0;
}
0