結果
問題 | No.2352 Sharpened Knife in Fall |
ユーザー | FplusFplusF |
提出日時 | 2023-06-16 22:03:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,088 bytes |
コンパイル時間 | 2,161 ms |
コンパイル使用メモリ | 206,120 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-24 14:17:29 |
合計ジャッジ時間 | 10,344 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 18 ms
6,944 KB |
testcase_17 | AC | 9 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#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)*2; ld t=w*abs(x)/(ld)2; ld a=acosl(x/r); 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/2){ ld ok=r,ng=-r; while(0.0000001<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); } if((ll)k%2!=0) ans.push_back(0); rep(i,(ll)k/2){ ans.push_back(-ans[(ll)k/2-1-i]); } reverse(all(ans)); for(auto &i:ans) cout << fixed << setprecision(10) << i << '\n'; }