【HDU5826】physics(物理题 + 数学题)

记录一个菜逼的成长。。

题目大意:
给出在一条直线上的几个点的初始速度,位置和方向,并且C = V * A;
求t秒后速度为第k小的速度。

因为完全弹性碰撞,碰撞前后速度和加速度交换,所以与位置无关。
t秒后第k小,其实也就是初始第k小。
所以只需要保存初始速度并排序。
推导答案: c = v * a; a = dv/dt; 得 c * dt = v * dv;两边积分得 2ct = v^2;得t = v^2/(2c);
所以 vt^2 = 2 * c * (t + t’) = vi^2 + 2 * c * t’;(t’为询问的时间)
PS:物理白学了,高数白学了。。Orz;

#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>
#include <algorithm>
#include <cstdlib>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <deque>
#include <cctype>
#include <bitset>
#include <cmath>
using namespace std;
#define ALL(v) (v).begin(),(v).end()
#define cl(a) memset(a,0,sizeof(a))
#define fin freopen("D://in.txt","r",stdin)
#define fout freopen("D://out.txt","w",stdout)
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int,int> PII;
typedef pair<LL,LL> PLL;
typedef vector<PII> VPII;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
template <typename T>
inline void read(T &x){
    T ans=0;
    char last=' ',ch=getchar();
    while(ch<'0' || ch>'9')last=ch,ch=getchar();
    while(ch>='0' && ch<='9')ans=ans*10+ch-'0',ch=getchar();
    if(last=='-')ans=-ans;
    x = ans;
}
inline bool fread(double &num)
{
    char in;double Dec=0.1;
    bool IsN=false,IsD=false;
    in=getchar();
    if(in==EOF) return false;
    while(in!='-'&&in!='.'&&(in<'0'||in>'9'))
        in=getchar();
    if(in=='-'){IsN=true;num=0;}
    else if(in=='.'){IsD=true;num=0;}
    else num=in-'0';
    if(!IsD){
        while(in=getchar(),in>='0'&&in<='9'){
            num*=10;num+=in-'0';}
    }
    if(in!='.'){
        if(IsN) num=-num;
            return true;
    }else{
        while(in=getchar(),in>='0'&&in<='9'){
                num+=Dec*(in-'0');Dec*=0.1;
        }
    }
    if(IsN) num=-num;
    return true;
}
template <typename T>
inline void write(T &a) {
    if(a < 0) { putchar('-'); a = -a; }
    if(a >= 10) Out(a / 10);
    putchar(a % 10 + '0');
}
/***********************************************/
const int maxn = 100000 + 10;
int v[maxn],n,C;
double cal(int t,int v)
{
    return sqrt(2.0 * C * t + (LL)v * v);
}
int main()
{
    int T;
    scanf("%d",&T);
    while(T--){
        read(n);read(C);
        for( int i = 0,x,d; i < n; i++ ){
            read(v[i]);
            scanf("%d%d",&x,&d);
        }
        sort(v,v+n);
        int q,k,t;read(q);
        while(q--){
            read(t);read(k);
            printf("%.3f\n",cal(t,v[k-1]));
        }
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值