結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー uchiiiiuchiiii
提出日時 2019-03-31 20:09:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 5,000 ms
コード長 1,038 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 166,024 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-11-08 12:51:49
合計ジャッジ時間 8,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
6,912 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 90 ms
5,248 KB
testcase_03 AC 169 ms
5,888 KB
testcase_04 AC 210 ms
6,784 KB
testcase_05 AC 210 ms
6,912 KB
testcase_06 AC 210 ms
6,784 KB
testcase_07 AC 232 ms
6,784 KB
testcase_08 AC 233 ms
6,784 KB
testcase_09 AC 233 ms
6,656 KB
testcase_10 AC 190 ms
6,528 KB
testcase_11 AC 203 ms
6,528 KB
testcase_12 AC 182 ms
6,400 KB
testcase_13 AC 213 ms
6,656 KB
testcase_14 AC 222 ms
6,656 KB
testcase_15 AC 198 ms
6,400 KB
testcase_16 AC 211 ms
6,784 KB
testcase_17 AC 212 ms
6,784 KB
testcase_18 AC 212 ms
6,784 KB
testcase_19 AC 232 ms
6,656 KB
testcase_20 AC 233 ms
6,912 KB
testcase_21 AC 233 ms
6,912 KB
testcase_22 AC 195 ms
6,528 KB
testcase_23 AC 201 ms
6,400 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 7 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 39 ms
5,248 KB
testcase_29 AC 20 ms
5,248 KB
testcase_30 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std; typedef long double ld; typedef long long ll;
typedef unsigned long long ull;
#define MP make_pair
#define FOR(i,a,b) for(int i=(a);i<=(b);i++)
#define FORR(x,arr) for(auto& x:arr)
#define VI vector<int>
#define PII pair<int, int>
#define FI first 
#define SE second
#define ALL(x) (x).begin(), (x).end()
const int INF=1<<30; const ll LINF=1LL<<60 ; const ll MOD=1e9+7 ;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; }
//-------------------
const int MX = 200000 + 7;
const ld LMX = 1e10+10;
ld l[MX];
int n;
ll k;

ll num(ld leng){
	ll ans = 0;
	FOR(i,1,n){
		ans += l[i]/leng;
	}
	return ans;
}

ld lt = 0, rt = LMX, mid;

void solve(){	
	FOR(i,1,100){
		mid = (lt+rt)/2;
		if(num(mid) < k) rt = mid;
		else lt = mid;
	}
}

int main(){
	cin >> n;
	FOR(i,1,n){
		cin >> l[i];
	}
	cin >> k;
	solve();	
	cout << fixed << setprecision(10) << mid;
    return 0;
}
0