結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー 沙耶花沙耶花
提出日時 2021-10-21 22:25:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 407 ms / 5,000 ms
コード長 717 bytes
コンパイル時間 3,956 ms
コンパイル使用メモリ 268,592 KB
実行使用メモリ 9,864 KB
最終ジャッジ日時 2024-09-21 19:10:37
合計ジャッジ時間 14,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 383 ms
9,808 KB
testcase_01 AC 376 ms
9,852 KB
testcase_02 AC 385 ms
9,800 KB
testcase_03 AC 368 ms
9,792 KB
testcase_04 AC 390 ms
9,796 KB
testcase_05 AC 407 ms
9,864 KB
testcase_06 AC 371 ms
9,448 KB
testcase_07 AC 381 ms
9,712 KB
testcase_08 AC 365 ms
9,312 KB
testcase_09 AC 367 ms
9,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000

int main(){
	
	int N;
	cin>>N;
	
	vector<long long> L(N);
	rep(i,N)cin>>L[i];
	
	priority_queue<pair<double,int>> Q;
	rep(i,N){
		Q.emplace(L[i],1);
	}
	
	vector<double> ans(500005,0);
	double m = 1e10;
	for(int i=1;i<ans.size();i++){
		auto p = Q.top();
		Q.pop();
		m = min(m,p.first);
		p.first *= p.second;
		p.second++;
		p.first /= p.second;
		Q.push(p);
		ans[i] = m;
	}
	
	
	int _q;
	cin>>_q;
	
	rep(_,_q){
		int K;
		scanf("%d",&K);
		cout<<fixed<<setprecision(10)<<ans[K]<<endl;
	}
	
	return 0;
}
0