結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー Naoyk1212Naoyk1212
提出日時 2017-06-05 15:50:45
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 752 ms
コンパイル使用メモリ 88,848 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 06:49:16
合計ジャッジ時間 6,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 60 ms
6,940 KB
testcase_03 AC 114 ms
6,944 KB
testcase_04 AC 138 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 130 ms
6,940 KB
testcase_07 AC 157 ms
6,944 KB
testcase_08 AC 157 ms
6,944 KB
testcase_09 AC 146 ms
6,944 KB
testcase_10 AC 123 ms
6,940 KB
testcase_11 AC 131 ms
6,944 KB
testcase_12 AC 113 ms
6,940 KB
testcase_13 AC 143 ms
6,940 KB
testcase_14 AC 149 ms
6,940 KB
testcase_15 AC 127 ms
6,940 KB
testcase_16 AC 116 ms
6,944 KB
testcase_17 AC 113 ms
6,944 KB
testcase_18 AC 112 ms
6,940 KB
testcase_19 AC 135 ms
6,940 KB
testcase_20 AC 135 ms
6,940 KB
testcase_21 AC 134 ms
6,940 KB
testcase_22 AC 100 ms
6,940 KB
testcase_23 AC 106 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 5 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 27 ms
6,940 KB
testcase_29 AC 15 ms
6,944 KB
testcase_30 AC 5 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <algorithm>
#include <vector>
#include <string>
#include <queue>
#include <stack>
#include <functional>
#include <complex>
#include <cmath>
#include <ccomplex>

using namespace std;

int main() {
	int n;
	cin >> n;
	vector<int> v(n);
	for (int i = 0; i < n; i++)cin >> v[i];
	long long k;
	cin >> k;
	
	sort(v.begin(), v.end(), greater<int>());

	const double eps = 1e-9;
	double high = v[0];
	double low = 0;
	
	while (high - low > eps && (high - low) / high > eps){
		double mid = (high + low) / 2;
		
		long long cnt = 0;
		for (int i = 0; i < n; i++) {
			cnt += v[i] / mid;
		}

		cerr << high << " " << mid << " " << low << " " << cnt << endl;
		if (cnt >= k) {
			low = mid;
		}
		else {
			high = mid;
		}
	}
	cout << fixed << setprecision(20) << high << endl;

}
0