結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー fiordfiord
提出日時 2015-08-06 00:30:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 1,441 ms
コンパイル使用メモリ 162,524 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 03:35:11
合計ジャッジ時間 5,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 56 ms
5,376 KB
testcase_03 AC 104 ms
5,376 KB
testcase_04 AC 123 ms
5,376 KB
testcase_05 AC 123 ms
5,376 KB
testcase_06 AC 124 ms
5,376 KB
testcase_07 AC 147 ms
5,376 KB
testcase_08 AC 147 ms
5,376 KB
testcase_09 AC 146 ms
5,376 KB
testcase_10 AC 110 ms
5,376 KB
testcase_11 AC 121 ms
5,376 KB
testcase_12 AC 110 ms
5,376 KB
testcase_13 AC 131 ms
5,376 KB
testcase_14 AC 137 ms
5,376 KB
testcase_15 AC 121 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 67 ms
5,376 KB
testcase_19 AC 91 ms
5,376 KB
testcase_20 AC 88 ms
5,376 KB
testcase_21 AC 86 ms
5,376 KB
testcase_22 AC 59 ms
5,376 KB
testcase_23 AC 62 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 24 ms
5,376 KB
testcase_29 AC 14 ms
5,376 KB
testcase_30 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
vector<int> l(200000);
int n;
long long int k;
bool check(double u){
	if(u==0)	return true;
	long long int cnt=0;
	for(int i=0;i<n;i++){
		cnt+=l[i]/u;
	}
	if(cnt>=k)	return true;
	else 	return false;
}
int main(){
	cin>>n;
	for(int i=0;i<n;i++)	cin>>l[i];
	cin>>k;
	if(n>=k){
		sort(l.begin(),l.end());
		reverse(l.begin(),l.end());
		cout<<l[k-1]<<endl;
		return 0;
	}
	double l=0,r=1000000000;
	while(r-l>1e-9){
		if(check((l+r)/2))	l=(l+r)/2;
		else 	r=(l+r)/2;
	}
	printf("%.15lf\n",r);
	return 0;
}
	
0