結果
| 問題 |
No.67 よくある棒を切る問題 (1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-03-08 08:56:46 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 786 bytes |
| コンパイル時間 | 341 ms |
| コンパイル使用メモリ | 54,184 KB |
| 最終ジャッジ日時 | 2025-03-03 10:29:52 |
| 合計ジャッジ時間 | 981 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:3: error: ‘vector’ was not declared in this scope
11 | vector<i64> l(n);
| ^~~~~~
main.cpp:3:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
2 | #include <algorithm>
+++ |+#include <vector>
3 | using namespace std;
main.cpp:11:13: error: expected primary-expression before ‘>’ token
11 | vector<i64> l(n);
| ^
main.cpp:11:15: error: ‘l’ was not declared in this scope
11 | vector<i64> l(n);
| ^
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: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;
}