博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NYOJ 6(贪心)
阅读量:6238 次
发布时间:2019-06-22

本文共 553 字,大约阅读时间需要 1 分钟。

试题连接:

#include 
#include
#include
using namespace std;float r[600];bool cmp(float a,float b){ return a>b;}float f(float r){ return sqrt(r*r-1*1);}int main(){ int cnt; cin>>cnt; while(cnt--) { int n; cin>>n; for(int i=0; i
>r[i]; sort(r,r+n,cmp); float len=0; int i=0; while(len<20) { len+=2*f(r[i]); i++; } cout<
<

转载于:https://www.cnblogs.com/zhanyeye/p/9746094.html

你可能感兴趣的文章