結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー Lay_ecLay_ec
提出日時 2014-11-16 23:58:50
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 769 bytes
コンパイル時間 799 ms
コンパイル使用メモリ 78,876 KB
実行使用メモリ 13,772 KB
最終ジャッジ日時 2024-12-31 23:07:24
合計ジャッジ時間 16,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
11,552 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 TLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 TLE -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 74 ms
6,820 KB
testcase_19 AC 98 ms
6,816 KB
testcase_20 AC 100 ms
6,816 KB
testcase_21 AC 98 ms
6,816 KB
testcase_22 AC 67 ms
6,820 KB
testcase_23 AC 72 ms
6,816 KB
testcase_24 AC 1 ms
6,816 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream> 
#include <string> 
#include <vector> 
#include <cmath> 
#include <algorithm> 
#include <cstdlib> 
#include <ctime> 
#include <cstdio> 
#include <functional> 
#include <set> 
#include <sstream> 
#include <cctype>

using namespace std; 


int main(){

	long n,k;
	cin>>n;

	vector<long> L(n);

	for(long i=0;i<n;i++) cin>>L[i];
	cin>>k;

	sort(L.begin(),L.end());

	if(n>=k) cout<<L[n-k];
	else{
		double res=0;

		double l=0,r=L[n-1];

		while((r-l)>1e-10){
			unsigned long long num=0;

			double m=(l+r)/2.0;
			for(long i=0;i<n;i++) num+=floor(L[i]/m);

//			cout<<"m="<<m<<"->"<<num<<endl;

			if(num<k) r=m;
			else{
				res=max(res,m);
				l=m;
			}

		}
		cout<<res<<endl;
	}

	return 0;
}
0