結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-06-25 09:23:47
言語 C++11
(gcc 11.4.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 782 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 51,968 KB
最終ジャッジ日時 2024-04-27 02:08:19
合計ジャッジ時間 1,379 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、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);
      |          ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#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 tmp = 0;
    for(int i : range(n)) {
      tmp += i64(l[i] / md);
    }
    if(tmp < k) {
      hi = md;
    } else {
      lo = md;
    }
  }
  printf("%lf\n", lo);
  return 0;
}
0