結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー mamekinmamekin
提出日時 2015-01-17 08:42:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 388 ms / 5,000 ms
コード長 1,008 bytes
コンパイル時間 1,365 ms
コンパイル使用メモリ 100,132 KB
実行使用メモリ 9,848 KB
最終ジャッジ日時 2024-06-22 15:03:18
合計ジャッジ時間 10,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 361 ms
9,488 KB
testcase_01 AC 365 ms
9,420 KB
testcase_02 AC 375 ms
9,556 KB
testcase_03 AC 356 ms
9,556 KB
testcase_04 AC 388 ms
9,848 KB
testcase_05 AC 359 ms
9,772 KB
testcase_06 AC 352 ms
8,956 KB
testcase_07 AC 360 ms
9,524 KB
testcase_08 AC 368 ms
8,828 KB
testcase_09 AC 384 ms
9,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

int main()
{
    int n;
    cin >> n;
    vector<int> len(n);
    for(int i=0; i<n; ++i)
        cin >> len[i];

    priority_queue<pair<double, int> > pq;
    for(int i=0; i<n; ++i)
        pq.push(make_pair(len[i], i));
    
    vector<int> cnt(n, 0);
    vector<double> ret(500001);
    for(int i=1; i<=500000; ++i){
        ret[i] = pq.top().first;
        int j = pq.top().second;
        pq.pop();

        ++ cnt[j];
        pq.push(make_pair(len[j] / (cnt[j] + 1.0), j));
    }

    int q;
    cin >> q;
    while(--q >= 0){
        int k;
        cin >> k;
        printf("%.10f\n", ret[k]);
    }

    return 0;
}
0