結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー karinohitokarinohito
提出日時 2021-09-07 00:52:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 402 ms / 5,000 ms
コード長 729 bytes
コンパイル時間 1,433 ms
コンパイル使用メモリ 175,512 KB
実行使用メモリ 9,912 KB
最終ジャッジ日時 2024-06-02 03:39:34
合計ジャッジ時間 12,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 390 ms
9,792 KB
testcase_01 AC 389 ms
9,824 KB
testcase_02 AC 400 ms
9,912 KB
testcase_03 AC 402 ms
9,900 KB
testcase_04 AC 383 ms
9,828 KB
testcase_05 AC 396 ms
9,660 KB
testcase_06 AC 396 ms
9,512 KB
testcase_07 AC 395 ms
9,560 KB
testcase_08 AC 378 ms
9,200 KB
testcase_09 AC 385 ms
9,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<ll>>;
ll mod=1e9+7;

int main() {
    ll N;
    cin>>N;
    vector<double> L(N);
    priority_queue<pair<double,ll>> Q;
    rep(i,N){

      cin>>L[i];
      Q.push(make_pair(L[i],1));
    }
    vector<double> AN(500005);
    rep(i,500003){
      auto p=Q.top();
      Q.pop();
      AN[i+1]=p.first;
      Q.push(make_pair(p.first*double(p.second)/double(p.second+1),p.second+1));
    }
    ll q;
    cin>>q;
    cout<<setprecision(16);
    rep(i,q){
      ll K;
      cin>>K;
      cout<<AN[K]<<endl;
    }
}
0