随笔—邀请赛前训—Wizards' Duel
Posted Shawn_Ji
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随笔—邀请赛前训—Wizards' Duel相关的知识,希望对你有一定的参考价值。
题意:给出一个距离,2端2个物体,给出速度v1,v2 相对前进,相遇后速度不变反弹,回端点都又速度不变反弹,求第二次相遇点位置。
思路:物理常识啊。。。
#include<cstdio> #include<cstring> #include<iostream> using namespace std; #define MAX(x,y) (((x)>(y)) ? (x) : (y)) #define MIN(x,y) (((x) < (y)) ? (x) : (y)) #define ABS(x) ((x)>0?(x):-(x)) const int inf = 0x7fffffff; int main() { double n; cin>>n; double speedOfHarry,speedOfEnemy; cin>>speedOfHarry>>speedOfEnemy; double ans=n/(speedOfEnemy+speedOfHarry)*speedOfHarry; // ans=ans*speedOfHarry; printf("%0.8lf\n",ans); // cout<<ans<<endl; return 0; }
以上是关于随笔—邀请赛前训—Wizards' Duel的主要内容,如果未能解决你的问题,请参考以下文章
随笔—邀请赛前训—Codeforces Round #328 (Div. 2) A. PawnChess
随笔—邀请赛前训—Codeforces Round #327 (Div. 2) Rebranding
随笔—邀请赛前训— Codeforces Round #330 (Div. 2) Vitaly and Night
随笔—邀请赛前训—Codeforces Round #330 (Div. 2) B题