結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | Zu_rin |
提出日時 | 2020-05-09 01:47:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 887 bytes |
コンパイル時間 | 658 ms |
コンパイル使用メモリ | 79,552 KB |
実行使用メモリ | 11,680 KB |
最終ジャッジ日時 | 2024-07-04 03:41:35 |
合計ジャッジ時間 | 13,590 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <list> #include <queue> #include <cmath> #include <algorithm> #define rep(i, n) for(i = 0; i < (n); i++) #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) #define MOD 1000000007 #define PI 3.14159265358979323846 #define INF 1 << 30 using namespace std; typedef long long ll; typedef pair<int, int> pp; double Search(double l, double r, const ll k, vector<double> & d) { if (r - l < 0.000000001) return l; double p = (l + r) / 2.0; ll i, sum = 0; rep(i, d.size()) sum += floor(d[i] / p); if (sum >= k) return Search(p, r, k, d); else return Search(l, p, k, d); } int main(void) { ll num, i, k; double ans; cin >> num; vector<double> d(num); rep(i, num) cin >> d[i]; cin >> k; ans = Search(0.0, 1000000000.0 * (double)num / (double)k, k, d); printf("%.15lf\n", ans); return 0; }