結果
問題 | No.68 よくある棒を切る問題 (2) |
ユーザー | kroton |
提出日時 | 2014-11-17 06:30:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 388 ms / 5,000 ms |
コード長 | 740 bytes |
コンパイル時間 | 808 ms |
コンパイル使用メモリ | 66,056 KB |
実行使用メモリ | 8,988 KB |
最終ジャッジ日時 | 2024-06-10 19:52:15 |
合計ジャッジ時間 | 7,394 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 388 ms
8,908 KB |
testcase_01 | AC | 368 ms
8,988 KB |
testcase_02 | AC | 370 ms
8,900 KB |
testcase_03 | AC | 375 ms
8,908 KB |
testcase_04 | AC | 362 ms
8,908 KB |
testcase_05 | AC | 362 ms
8,908 KB |
testcase_06 | AC | 358 ms
8,780 KB |
testcase_07 | AC | 376 ms
8,840 KB |
testcase_08 | AC | 360 ms
8,468 KB |
testcase_09 | AC | 362 ms
8,652 KB |
ソースコード
#include <iostream> #include <queue> using namespace std; const int K_MAX = 500010; double res[K_MAX]; int main(){ int N; cin >> N; priority_queue<pair<double, int>> Q; for(int i=0;i<N;i++){ int L; cin >> L; Q.push(make_pair(L, 1)); } for(int k=1;k<K_MAX;k++){ auto ps = Q.top(); Q.pop(); double len = ps.first; int cut = ps.second; res[k] = len; Q.push(make_pair(len * cut / (cut + 1), cut + 1)); } int Qs; cin >> Qs; for(int i=0;i<Qs;i++){ int K; cin >> K; printf("%.15f\n", res[K]); } return 0; }