結果
問題 | No.2352 Sharpened Knife in Fall |
ユーザー | HIcoder |
提出日時 | 2023-07-05 14:39:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,635 bytes |
コンパイル時間 | 1,025 ms |
コンパイル使用メモリ | 106,180 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-19 08:48:00 |
合計ジャッジ時間 | 9,223 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 155 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 233 ms
6,944 KB |
testcase_07 | AC | 117 ms
6,944 KB |
testcase_08 | AC | 232 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 232 ms
6,940 KB |
testcase_11 | AC | 231 ms
6,944 KB |
testcase_12 | AC | 232 ms
6,944 KB |
testcase_13 | AC | 231 ms
6,940 KB |
testcase_14 | AC | 109 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | AC | 13 ms
6,940 KB |
testcase_17 | AC | 7 ms
6,944 KB |
testcase_18 | AC | 84 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; const double PI=acos(-1); double area(double r,double y){ double theta=acos(y/r); return r*r*theta - y*sqrt(r*r-y*y); } int main(){ int R,K; cin>>R>>K; int halfK=K/2; vector<double> ans; double upperb=R; for(int k=1;k<=halfK;k++){ double ub=upperb; double lb=0; double Sk=PI*R*R*k/(K+1); for(int x=0;x<100;x++){ double mid=(ub+lb)/2; //cout<<"k="<<k<<endl; //cout<<"ub="<<ub<<endl; //cout<<"lb="<<lb<<endl; if(area(R,mid)<=Sk){ ub=mid; }else{ lb=mid; } } //cout<<"ub="<<ub<<endl; ans.push_back(ub); //upperb=ub; } sort(ans.begin(),ans.end());//絶対値が小さい順 reverse(ans.begin(),ans.end());//絶対値が大きい int n=ans.size(); if(K%2==1){ for(int k=0;k<n;k++){ printf("%.13f\n",-ans[k]); } printf("%.13f\n",0); for(int k=n-1;k>=0;k--){ printf("%.13f\n",ans[k]); } }else{ for(int k=0;k<n;k++){ printf("%.13f\n",-ans[k]); } for(int k=n-1;k>=0;k--){ printf("%.13f\n",ans[k]); } } }