結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ninoinuininoinui
提出日時 2020-09-26 02:53:22
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 202,476 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 13:25:04
合計ジャッジ時間 9,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 102 ms
5,248 KB
testcase_03 AC 194 ms
5,248 KB
testcase_04 AC 264 ms
5,248 KB
testcase_05 AC 262 ms
5,248 KB
testcase_06 AC 259 ms
5,248 KB
testcase_07 AC 264 ms
5,248 KB
testcase_08 AC 264 ms
5,248 KB
testcase_09 AC 266 ms
5,248 KB
testcase_10 AC 235 ms
5,248 KB
testcase_11 AC 250 ms
5,248 KB
testcase_12 AC 226 ms
5,248 KB
testcase_13 AC 243 ms
5,248 KB
testcase_14 AC 251 ms
5,248 KB
testcase_15 AC 226 ms
5,248 KB
testcase_16 AC 261 ms
5,248 KB
testcase_17 AC 262 ms
5,248 KB
testcase_18 AC 264 ms
5,248 KB
testcase_19 AC 269 ms
5,248 KB
testcase_20 AC 268 ms
5,248 KB
testcase_21 AC 266 ms
5,248 KB
testcase_22 AC 235 ms
5,248 KB
testcase_23 AC 249 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 7 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 43 ms
5,248 KB
testcase_29 AC 23 ms
5,248 KB
testcase_30 AC 7 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template <typename T, typename U> void cmin(T &a, U b) {
  if (a > b) a = b;
}
template <typename T, typename U> void cmax(T &a, U b) {
  if (a < b) a = b;
}

signed main() {
  cin.tie(nullptr);
  ios_base::sync_with_stdio(false);

  long N;
  cin >> N;
  vector<long> L(N);
  for (long i = 0; i < N; i++) cin >> L.at(i);
  long K;
  cin >> K;

  auto f = [&](long double mid) {
    long tmp = 0;
    for (auto l : L) tmp += long(l / mid);
    if (tmp >= K) return true;
    else return false;
  };

  long double ok = 1e-10, ng = 1e10 + 1e-10;
  for (long i = 300; i; i--) {
    long double mid = (ok + ng) / 2;
    (f(mid)) ? ok = mid : ng = mid;
  }
  cout << fixed << setprecision(9) << ok << "\n";
}
0