結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー kyuridenamidakyuridenamida
提出日時 2016-02-19 05:27:18
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 485 ms / 5,000 ms
コード長 765 bytes
コンパイル時間 1,320 ms
コンパイル使用メモリ 164,296 KB
実行使用メモリ 8,984 KB
最終ジャッジ日時 2024-09-22 12:11:37
合計ジャッジ時間 12,104 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int (i) = 0 ; (i) < (int)(n) ; (i)++)
#define REP(i,a,b) for(int (i) = a ; (int)(i) <= (int)(b) ; (i)++)
#define all(n) (n).begin(),(n).end()
typedef long long ll;
typedef vector<int> Vi;
typedef vector<Vi> VVi;
typedef pair<long long,long long> Pii;
typedef vector<Pii> VPii;


double res[500010];

struct NODE{
	double x;
	int y;
};
bool operator < (const NODE &a,const NODE &b){
	return a.x / a.y < b.x / b.y; 
}
int main(){
	priority_queue<NODE> Q;
	int N;
	cin >> N;
	rep(i,N){
		int x;
		cin >> x;
		Q.push({1.*x,1});
	}
	REP(i,1,500000){
		auto q = Q.top(); Q.pop();
		res[i] = q.x / q.y;
		Q.push({q.x,q.y+1});
	}
	int K;
	cin >> K;
	rep(i,K){int x; cin >> x;printf("%.10lf\n",res[x]); }

}
0