結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | cormoran |
提出日時 | 2016-02-18 22:58:18 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 128 ms / 5,000 ms |
コード長 | 1,400 bytes |
コンパイル時間 | 800 ms |
コンパイル使用メモリ | 74,648 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 11:43:28 |
合計ジャッジ時間 | 4,768 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include<iostream> #include<vector> #include<cassert> #include<string> #include<algorithm> #include<cstdio> #include<cstdlib> #include<cmath> #include<stack> #include<queue> #include<set> #include<map> #include<tuple> using namespace std; typedef pair<int,int> pii; typedef long long ll; typedef ll int__; #define rep(i,j) for(int__ i=0;i<(int__)(j);i++) #define repeat(i,j,k) for(int__ i=(j);i<(int__)(k);i++) #define all(v) v.begin(),v.end() template<typename T> ostream& operator << (ostream &os , const vector<T> &v){ rep(i,v.size()) os << v[i] << (i!=v.size()-1 ? " " : "\n"); return os; } template<typename T> istream& operator >> (istream &is , vector<T> &v){ rep(i,v.size()) is >> v[i]; return is; } #ifdef DEBUG void debug(){ cerr << endl; } #endif template<class F,class...R> void debug(const F &car,const R&... cdr){ #ifdef DEBUG cerr << car << " "; debug(cdr...); #endif } ll calc(vector<int> &L,double len){ ll ans = 0; for(int l : L){ ans += l / len; } return ans; } bool solve(){ ll N; cin >> N; vector<int> L(N); cin >> L; ll K; cin >> K; double d = 1e-11, u = 1e16; while((u - d) / d > 1e-11){ double m = (d + u) / 2; if(calc(L, m) >= K) d = m; else u = m; } printf("%.10f\n", d); return false; } int main() { ios::sync_with_stdio(false); while(solve()); return 0; }