結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー not_522not_522
提出日時 2015-08-17 20:28:32
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 525 ms / 5,000 ms
コード長 967 bytes
コンパイル時間 1,459 ms
コンパイル使用メモリ 168,732 KB
実行使用メモリ 13,572 KB
最終ジャッジ日時 2024-07-18 10:02:33
合計ジャッジ時間 12,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 482 ms
12,716 KB
testcase_01 AC 513 ms
12,100 KB
testcase_02 AC 484 ms
12,704 KB
testcase_03 AC 516 ms
13,180 KB
testcase_04 AC 523 ms
12,104 KB
testcase_05 AC 492 ms
13,572 KB
testcase_06 AC 468 ms
12,608 KB
testcase_07 AC 469 ms
12,848 KB
testcase_08 AC 506 ms
11,912 KB
testcase_09 AC 525 ms
12,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

template<typename Function> long double bisectionMethod(Function function, long double lower, long double upper) {
  for (int i = 0; i < 200; ++i) {
    long double middle = (lower + upper) / 2;
    (function(middle) <= 0 ? lower : upper) = middle;
  }
  return lower;
}

int main() {
  int n;
  cin >> n;
  vector<int> l(n);
  for (int& i : l) cin >> i;
  auto f = [&](double x){
    long long sum = 0;
    for (int& i : l) sum += floor(i / x);
    return sum - 500000 + 0.5;
  };
  auto mx =  bisectionMethod(f, numeric_limits<int>::max(), 0);
  vector<long double> res;
  for (const int& i : l) {
    for (int j = 1; ; ++j) {
      long double d = (long double)i / j;
      if (d < mx - 1e-9) break;
      res.emplace_back(d);
    }
  }
  sort(res.rbegin(), res.rend());
  int q;
  cin >> q;
  for (int i = 0; i < q; ++i) {
    int k;
    cin >> k;
    cout << fixed << setprecision(15) << res[k - 1] << endl;
  }
}
0