結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー kmjpkmjp
提出日時 2014-11-17 00:23:47
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 216 ms / 5,000 ms
コード長 1,102 bytes
コンパイル時間 1,430 ms
コンパイル使用メモリ 162,924 KB
実行使用メモリ 11,584 KB
最終ジャッジ日時 2025-01-01 19:55:12
合計ジャッジ時間 9,044 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
11,468 KB
testcase_01 AC 209 ms
11,584 KB
testcase_02 AC 212 ms
11,404 KB
testcase_03 AC 200 ms
11,408 KB
testcase_04 AC 201 ms
11,356 KB
testcase_05 AC 199 ms
11,460 KB
testcase_06 AC 208 ms
11,020 KB
testcase_07 AC 216 ms
11,260 KB
testcase_08 AC 199 ms
10,836 KB
testcase_09 AC 197 ms
11,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<to;x++)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,Q;
ll L[300000];
int num[500005];
double res[500005];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	priority_queue<pair<double,int> > P;
	
	FOR(i,N) cin>>L[i], P.push(make_pair(L[i],i));
	
	for(i=1;i<=500000;i++) {
		pair<double,int> p = P.top();
		P.pop();
		res[i]=p.first;
		num[p.second]++;
		p=make_pair(L[p.second]/(num[p.second]+1.0),p.second);
		
		P.push(p);
	}
	
	cin>>Q;
	while(Q--) cin>>x, _P("%.12lf\n",res[x]);
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0