結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー PachicobuePachicobue
提出日時 2018-11-21 03:46:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 520 ms / 5,000 ms
コード長 632 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 207,116 KB
実行使用メモリ 14,552 KB
最終ジャッジ日時 2024-06-06 21:31:52
合計ジャッジ時間 13,976 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
14,544 KB
testcase_01 AC 503 ms
14,552 KB
testcase_02 AC 520 ms
14,552 KB
testcase_03 AC 509 ms
14,548 KB
testcase_04 AC 500 ms
14,548 KB
testcase_05 AC 501 ms
14,420 KB
testcase_06 AC 494 ms
13,908 KB
testcase_07 AC 497 ms
14,292 KB
testcase_08 AC 484 ms
13,652 KB
testcase_09 AC 478 ms
13,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using ld = long double;
int main()
{
    int N;
    std::cin >> N;
    using P = std::pair<ld, int>;
    std::priority_queue<P> q;
    for (int i = 0; i < N; i++) {
        ld L;
        std::cin >> L, q.push({L, 1});
    }
    int Q;
    std::vector<ld> ans(500001);
    for (int cnt = 1; cnt <= 500000; cnt++) {
        const auto p = q.top();
        q.pop(), ans[cnt] = p.first, q.push({p.first * p.second / (p.second + 1), p.second + 1});
    }
    std::cin >> Q;
    for (int q = 0, K; q < Q; q++) { std::cin >> K, std::cout << std::fixed << std::setprecision(15) << ans[K] << "\n"; }
    return 0;
}
0