結果

問題 No.2352 Sharpened Knife in Fall
ユーザー FplusFplusFFplusFplusF
提出日時 2023-06-16 22:13:03
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 749 ms / 3,000 ms
コード長 1,041 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 207,620 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 14:40:28
合計ジャッジ時間 16,364 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
ld r,k;
ld f(ld x){
    ld w=sqrtl(r*r-x*x)*(ld)2;
    ld t=w*abs(x)/(ld)2;
    ld a=acosl(abs(x)/r);
    if(x<=0) return r*r*(ld)M_PI-(ld)(r*r*a-t);
    return r*r*a-t;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> r >> k;
    ld sum=0;
    ld x=r*r*(ld)M_PI/(ld)(k+1);
    vector<ld> ans;
    rep(i,(ll)k){
        ld ok=r,ng=-r;
        while(0.0000000000001<abs(ok-ng)){
            ld mid=(ok+ng)/2;
            if(f(mid)-sum<=x) ok=mid;
            else ng=mid;
        }
        ans.push_back(ok);
        sum=f(ok);
    }
    sort(all(ans));
    for(auto &i:ans) cout << fixed << setprecision(10) << i << '\n';
}
0