結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-09-16 03:37:32
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 588 bytes
コンパイル時間 735 ms
コンパイル使用メモリ 59,380 KB
実行使用メモリ 10,792 KB
最終ジャッジ日時 2024-11-17 06:24:34
合計ジャッジ時間 76,370 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
9,088 KB
testcase_02 AC 73 ms
9,088 KB
testcase_03 AC 137 ms
9,088 KB
testcase_04 AC 171 ms
9,088 KB
testcase_05 AC 173 ms
9,088 KB
testcase_06 AC 172 ms
9,216 KB
testcase_07 AC 192 ms
9,088 KB
testcase_08 AC 188 ms
9,216 KB
testcase_09 TLE -
testcase_10 AC 148 ms
5,248 KB
testcase_11 AC 159 ms
5,248 KB
testcase_12 AC 153 ms
5,248 KB
testcase_13 AC 171 ms
5,248 KB
testcase_14 AC 179 ms
5,248 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 32 ms
5,248 KB
testcase_29 AC 16 ms
5,248 KB
testcase_30 AC 5 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<(n);i++)

int n, L[200010];
ll k;

bool hantei(double m){
	ll sum = 0;
	rep(i, n){
		sum += floor((double)L[i] / m);
		if(sum >= k) return true;
	}
	return false;
}

int main(void){
	cin >> n;
	rep(i, n) cin >> L[i];
	cin >> k;

	//2分探索
	double r = 1e10 + 1, l = 0.0;
	int cnt = 0;
	while(r - l > 1e-10 || cnt < 100){
		cnt++;
		double mid = (l + r) / 2.0;
		if(hantei(mid)){
			l = mid;
		}else{
			r = mid;
		}
	}

	printf("%.10f\n", l);
	return 0;
}
0