結果
| 問題 | No.67 よくある棒を切る問題 (1) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-03-08 08:56:46 |
| 言語 | C++11(old_compat) (gcc 12.4.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 108 ms / 5,000 ms |
| コード長 | 786 bytes |
| 記録 | |
| コンパイル時間 | 1,229 ms |
| コンパイル使用メモリ | 168,300 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-03-08 16:05:52 |
| 合計ジャッジ時間 | 4,459 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
10 | int n; scanf("%d", &n);
| ~~~~~^~~~~~~~~~
main.cpp:12:32: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
12 | for(int i : range(n)) { scanf("%lld", &l[i]); }
| ~~~~~^~~~~~~~~~~~~~~
main.cpp:13:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
13 | i64 k; scanf("%lld", &k);
| ~~~~~^~~~~~~~~~~~
ソースコード
#include <iostream>
#include <algorithm>
using namespace std;
using i64 = long long;
class range {private: struct I{int x;int operator*(){return x;}bool operator!=(I& lhs){return x<lhs.x;}void operator++(){++x;}};I i,n;
public:range(int n):i({0}),n({n}){}range(int i,int n):i({i}),n({n}){}I& begin(){return i;}I& end(){return n;}};
int main(void) {
int n; scanf("%d", &n);
vector<i64> l(n);
for(int i : range(n)) { scanf("%lld", &l[i]); }
i64 k; scanf("%lld", &k);
double lo = 0., hi = *max_element(l.begin(), l.end());
for(int times : range(300)) {
double md = (lo + hi) / 2;
i64 cnt = 0;
for(int i : range(n)) {
cnt += i64(l[i] / md);
}
if(cnt < k) {
hi = md;
} else {
lo = md;
}
}
printf("%.10lf\n", lo);
return 0;
}