結果
問題 |
No.68 よくある棒を切る問題 (2)
|
ユーザー |
|
提出日時 | 2018-11-21 03:45:22 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 453 ms / 5,000 ms |
コード長 | 755 bytes |
コンパイル時間 | 2,071 ms |
コンパイル使用メモリ | 202,008 KB |
最終ジャッジ日時 | 2025-01-06 17:03:43 |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#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; }