結果
問題 | No.68 よくある棒を切る問題 (2) |
ユーザー | nanophoto12 |
提出日時 | 2014-11-18 00:04:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,969 bytes |
コンパイル時間 | 843 ms |
コンパイル使用メモリ | 76,028 KB |
実行使用メモリ | 20,032 KB |
最終ジャッジ日時 | 2024-06-10 20:01:34 |
合計ジャッジ時間 | 13,728 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <iostream> #include <cstdio> #include <cstdlib> #include <string> #include <map> #include <algorithm> #include <vector> #include <memory.h> using namespace std; typedef signed long long ll; int pred(pair<int, ll> first, pair<int, ll> second) { return first.second < second.second; } int main() { ll n; cin >> n; vector<ll> values(n); for(int i = 0; i < n;i++) { cin >> values[i]; } int q; cin >> q; vector<pair<int, ll>> length(q); vector<double> results(q); for(int i = 0; i < q;i++) { ll value; cin >> value; length[i] = make_pair(i, value); } sort(length.begin(), length.end(), pred); double totalMin = 0; double totalMax = 1e9; int left = 0; int right = q-1; while(true) { { double minValue = totalMin; double maxValue = totalMax; double threshold = length[left].second; while(maxValue - minValue > 1e-10) { double mid = (minValue + maxValue)/2.0; ll sum = 0; for (int i = 0; i < n; i++) { sum += (ll)(values[i]/mid); } if (sum >= threshold) { minValue = mid; } else { maxValue = mid; } } results[length[left].first] = minValue; totalMax = min(totalMax, minValue); if(left >= right) { break; } left++; } { double minValue = totalMin; double maxValue = totalMax; double threshold = length[right].second; while(maxValue - minValue > 1e-10) { double mid = (minValue + maxValue)/2.0; ll sum = 0; for (int i = 0; i < n; i++) { sum += (ll)(values[i]/mid); } if (sum >= threshold) { minValue = mid; } else { maxValue = mid; } } results[length[right].first] = minValue; totalMin = max(totalMin, minValue); if(left >= right) { break; } right--; } } for(int m = 0;m < q;m++) { printf("%.15f\n", results[m]); } }