結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー cureskolcureskol
提出日時 2022-09-01 18:04:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,672 bytes
コンパイル時間 2,982 ms
コンパイル使用メモリ 225,108 KB
実行使用メモリ 10,396 KB
最終ジャッジ日時 2024-04-26 18:56:56
合計ジャッジ時間 10,916 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 361 ms
10,396 KB
testcase_01 AC 346 ms
10,396 KB
testcase_02 AC 348 ms
10,268 KB
testcase_03 AC 325 ms
10,140 KB
testcase_04 AC 345 ms
10,136 KB
testcase_05 AC 325 ms
10,264 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma region template
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
#ifdef __LOCAL
 #include <debug>
#else
 #define debug(...) void(0)
#endif

using ll=long long;
using ld=long double;
using vi=vector<int>;
using vll=vector<ll>;
using pi=pair<int,int>;
using pll=pair<ll,ll>;

#define overload2(a,b,c,...) c
#define overload3(a,b,c,d,...) d
#define overload4(a,b,c,d,e,...) e
#define overload5(a,b,c,d,e,f,...) f

#define TYPE1(T) template<typename T>
#define TYPE2(T,U) template<typename T,typename U>
#define TYPE(...) overload2(__VA_ARGS__,TYPE2,TYPE1)(__VA_ARGS__)
#define TYPES1(T) template<typename... T>
#define TYPES2(H,T) template<typename H,typename... T>
#define TYPES(...) overload2(__VA_ARGS__,TYPES2,TYPES1)(__VA_ARGS__)

#define REP4(i,s,n,d) for(int i=(s);i<(n);i+=(d))
#define REP3(i,s,n) REP4(i,s,n,1)
#define REP2(i,n) REP3(i,0,n)
#define REP1(n) REP2(tomato,n)
#define REP(...) overload4(__VA_ARGS__,REP4,REP3,REP2,REP1)(__VA_ARGS__)

#define RREP4(i,s,n,d) for(int i=(n)-1;i>=s;i-=d)
#define RREP3(i,s,n) RREP4(i,s,n,1)
#define RREP2(i,n) RREP3(i,0,n)
#define RREP1(n) RREP2(tomato,n)
#define RREP(...) overload4(__VA_ARGS__,RREP4,RREP3,RREP2,RREP1)(__VA_ARGS__)

#define ALL(v) v.begin(),v.end()
#define RALL(v) v.rbegin(),v.rend()
#define SORT(v) sort(ALL(v))
#define RSORT(v) sort(RALL(v))
#define REVERSE(v) reverse(ALL(v))
#define UNIQUE(v) SORT(v),v.erase(unique(ALL(v)),v.end())

TYPES(T) void input(T&... a){ (cin>>...>>a); }
#define DECLARE(T,...) T __VA_ARGS__;input(__VA_ARGS__);
#define INT(...) DECLARE(int,__VA_ARGS__)
#define STR(...) DECLARE(string,__VA_ARGS__)
#define LL(...) DECLARE(long long,__VA_ARGS__)
#define CHR(...) DECLARE(char,__VA_ARGS__)
#define DBL(...) DECLARE(double,__VA_ARGS__)
#define VI(n,v) vi v(n);cin>>v;
#define VLL(n,v) vll v(n);cin>>v;

TYPE(T) istream&operator>>(istream&is,vector<T>&v){
  for(auto&a:v)cin>>a;
  return is;
}
TYPE(T) ostream&operator<<(ostream&os,const vector<T>&v){
  if(&os==&cerr)os<<"[";
  REP(i,v.size()){
    os<<v[i];
    if(i+1<v.size())os<<(&os==&cerr?",":" ");
  }
  if(&os==&cerr)os<<"]";
  return os;
}
TYPE(T,S) istream&operator>>(istream&is,pair<T,S>&p){
  cin>>p.first>>p.second;
  return is;
}

TYPE(T) using pq=priority_queue<T>;
TYPE(T) using pqg=priority_queue<T,vector<T>,greater<T>>;
TYPE(T) T pick(queue<T>& que){assert(que.size()); T a=que.front();que.pop();return a;}
TYPE(T) T pick(pq<T>& que){assert(que.size()); T a=que.top();que.pop();return a;}
TYPE(T) T pick(pqg<T>& que){assert(que.size()); T a=que.top();que.pop();return a;}
TYPE(T) T pick(stack<T>& sta){assert(sta.size()); T a=sta.top();sta.pop();return a;}

string YES(bool f=true){return (f?"YES":"NO");}
string Yes(bool f=true){return (f?"Yes":"No");}
string yes(bool f=true){return (f?"yes":"no");}

constexpr int INF=1e9+7;
constexpr ll LINF=ll(1e18)+7;
constexpr ld EPS=1e-10;

vi iota(int n){vi a(n);iota(ALL(a),0);return a;}
TYPE(T) void fin(T a){cout<<a<<endl;exit(0);}
TYPE(T) bool chmax(T &a,T b){return (a<b&&(a=b,true));}
TYPE(T) bool chmin(T &a,T b){return (a>b&&(a=b,true));}
TYPES(T,Ns)
auto make_vector(T x,int n,Ns ...ns){
  if constexpr(sizeof...(ns)==0)return vector<T>(n,x);
  else return vector(n,make_vector<T>(x,ns...));
}
bool in(const ll S,const int a){return (S>>a)&1;}
int popcount(const ll S){return __builtin_popcountll(S);}
#pragma endregion template

template<class F>
long double binary_search_ld(long double ok,long double ng,const F &is_ok,int iter=100){
  while(iter--){
    long double mid=(ok+ng)/2;
    (is_ok(mid)?ok:ng)=mid;
  }
  return ok;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  INT(n);
  VI(n,v);
  INT(q);
  vector<pi> w(q);
  REP(i,q){
    INT(a);
    w[i]={a,i};
  }
  SORT(w);
  vector<ld> ans(q);

  debug(w);
  
  auto [k,id]=w[0];
  ans[id]=binary_search_ld(0,1e10,[&](ld x){
    ld res=0;
    for(int p:v)res+=floor(p/x);
    return res>=k;
  });

  pq< tuple<ld,int,int> > que;
  REP(i,n){
    int a=floor(v[i]/ans[id]);
    // 今取れる本数
    // a+1 取る時の長さをメモ
    que.emplace(ld(v[i])/ld(a+1),a,i);
  }
  
  ld now_lng=ans[id];
  int now_hn=0;
  REP(i,n)now_hn+=floor(v[i]/ans[id]);
  REP(i,1,n){
    auto [K,ID]=w[i];
    while(now_hn<K){
      auto [lng,A,iidd]=pick(que);
      int nowA=floor(v[iidd]/now_lng+EPS);
      if(A<nowA){
        now_hn+=nowA-A;
        que.emplace( ld(v[iidd])/ld(nowA+1) , nowA , iidd);
      }
      else{
        assert(A==nowA);
        now_lng=lng;
        now_hn++;
        que.emplace( ld(v[iidd])/ld(A+2) , A+1 , iidd);
      }
    }
    ans[ID]=now_lng;
  }
  cout<<fixed<<setprecision(12);
  for(ld p:ans)cout<<p<<"\n";
}

0