結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | Naoyk1212 |
提出日時 | 2017-06-05 15:51:42 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 162 ms / 5,000 ms |
コード長 | 820 bytes |
コンパイル時間 | 1,034 ms |
コンパイル使用メモリ | 88,136 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 12:01:06 |
合計ジャッジ時間 | 5,683 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#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-10; 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; }