結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー PachicobuePachicobue
提出日時 2018-11-21 03:45:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 487 ms / 5,000 ms
コード長 755 bytes
コンパイル時間 2,252 ms
コンパイル使用メモリ 209,236 KB
実行使用メモリ 16,228 KB
最終ジャッジ日時 2024-06-06 21:30:16
合計ジャッジ時間 13,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 478 ms
16,228 KB
testcase_01 AC 485 ms
16,100 KB
testcase_02 AC 487 ms
15,996 KB
testcase_03 AC 483 ms
16,100 KB
testcase_04 AC 471 ms
16,100 KB
testcase_05 AC 470 ms
16,096 KB
testcase_06 AC 477 ms
16,076 KB
testcase_07 AC 478 ms
16,156 KB
testcase_08 AC 470 ms
15,888 KB
testcase_09 AC 468 ms
15,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define show(x) std::cerr << #x << " = " << x << std::endl
using ll = long long;
using ld = long double;
int main()
{
    int N;
    std::cin >> N;
    std::vector<ll> L(N);
    for (int i = 0; i < N; i++) { std::cin >> L[i]; }
    int Q;
    std::vector<ld> ans(500001);
    using P = std::pair<ld, int>;
    std::priority_queue<P> q;
    for (int i = 0; i < N; i++) { q.push({L[i], 1}); }
    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