結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー data9824data9824
提出日時 2015-06-20 05:13:56
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 774 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 11:34:14
合計ジャッジ時間 4,987 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <vector>
#include <iomanip>
#include <algorithm>

using namespace std;

const double EPS = 1E-10;

int main() {
	int n;
	cin >> n;
	vector<double> l(n);
	for (int i = 0; i < n; ++i) {
		cin >> l[i];
	}
	long long k;
	cin >> k;
	double lower = 0, upper = *max_element(l.begin(), l.end());
	double preLength = 0.0;
	while (upper - lower > EPS || (upper - lower) / lower > EPS) {
		double length = (lower + upper) / 2.;
		if (length == preLength) {
			break;
		}
		preLength = length;
		long long count = 0;
		for (int i = 0; i < n; ++i) {
			count += (long long)floor(l[i] / length);
		}
		if (count >= k) {
			lower = length;
		} else {
			upper = length;
		}
	}
	cout << fixed << setprecision(20) << lower << endl;
	return 0;
}
0