結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | amtgjw |
提出日時 | 2018-07-11 22:06:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 848 bytes |
コンパイル時間 | 705 ms |
コンパイル使用メモリ | 82,784 KB |
実行使用メモリ | 11,636 KB |
最終ジャッジ日時 | 2024-09-22 00:23:41 |
合計ジャッジ時間 | 13,600 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 <cstdio> #include <string> #include <vector> #include <algorithm> #include <numeric> #include <map> #include <math.h> #include <cstring> using namespace std; #define REP(i,n) for(int i=0;i<(n);++i) #define REPS(i,s,t) for(int i=(s);i<(t);++i) #define INF 2000000007 #define MOD 998244353 #define MAX 100005 typedef unsigned int uint; typedef unsigned long long int ull; typedef long long int ll; bool check(double n,ll K,vector<uint> a){ for(auto t : a) K -= floor(t/n); return (K<=0); } int main(void) { int N;cin>>N; vector<uint> L(N); REP(i,N)cin>>L[i]; ll K;cin>>K; double l=1e-8,r=1e9; double middle = (l+r)/2; REP(i,10000){ if(check(middle,K,L)){ l = middle; middle = (l+r)/2; } else{ r = middle; middle = (l+r)/2; } } printf("%0.7lf\n",middle); return 0; }