【补题日记】[2022牛客暑期多校1]D-Mocha and Railgun

Pro

https://ac.nowcoder.com/acm/contest/33186/D

Sol

要求的答案为一段劣弧对应的圆心角的大小,而劣弧的长度可以对应为弦的长度,设弦的两个端点的纵坐标为 y 1 , y 2 y1,y2 y1,y2,则弦长为 ( y 1 − y 2 ) 2 + d 2 \sqrt{(y1-y2)^2+d^2} (y1y2)2+d2 ,而弦长最大也就是 y 1 − y 2 y1-y2 y1y2最大,即AB线与OQ线重合时即为所求。

然后答案其实就是一个公式了。

Code

//By cls1277
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
#define Fo(i,a,b) for(LL i=(a); i<=(b); i++)
#define Ro(i,b,a) for(LL i=(b); i>=(a); i--)
#define Eo(i,x,_) for(LL i=head[x]; i; i=_[i].next)
#define Ms(a,b) memset((a),(b),sizeof(a))
#define endl '\n'

//const LL maxn = ;

int main() {
    // ios::sync_with_stdio(false);
    // cin.tie(nullptr);
    #ifdef DEBUG
    freopen("data.txt","r",stdin);
    #endif
    LL t; cin>>t;
    while(t--) {
        LL r; cin>>r;
        LL x, y, d; cin>>x>>y>>d;
        double dis = sqrt(x*x+y*y);
        printf("%.12lf\n",r*(acos((dis-d)*1.0/r)-acos((dis+d)*1.0/r)));
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

cls1277

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值