• BZOJ3570: DZY Loves Physics I


    DZY系列。

    这题首先是几个性质:

      1.所有球质量相同,碰撞直接交换速度,而球又没有编号,那么就可以直接视作两个球没有碰撞。

      2.所有的方向、初始位置都没有任何用处。

    然后就是速度的问题了,根据题设[v'cdot v = C]解这个方程,可以得到[v=sqrt{2ct+v_0^2}]

    那么(T)时可的速度(v_T)的相对大小就直接由(v_0)决定了,我们只需要找到第(k)小的(v_0),直接输出答案即可。

    最后一个问题是怎么找第(k)小的(v_0),这里用了一个树状数组的奇怪性质:可以在(O(lg n))的时间内完成二分第(k)小这件事,具体可以看代码+对着树状数组的图理解。

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cmath>
     4 #include <cstring>
     5 #include <algorithm>
     6 using namespace std;
     7 typedef long long LL;
     8 inline int getnum()
     9 {
    10     int ans=0,fh=1;char ch=getchar();
    11     while(ch<'0'||ch>'9'){if(ch=='-')fh*=-1;ch=getchar();}
    12     while(ch>='0'&&ch<='9')ans=ans*10+ch-'0',ch=getchar();
    13     return fh*ans;
    14 }
    15 int n,C;
    16 const int tsize=1<<17;
    17 int t[210000];
    18 inline void insert(int x){for(;x<=tsize;x+=x&(-x))t[x]++;}
    19 int main(int argc, char *argv[])
    20 {
    21     n=getnum(),C=getnum();
    22     while(n--)insert(getnum()),getnum(),getnum();
    23     int q=getnum();
    24     while(q--)
    25     {
    26         if(getnum())
    27         {
    28             int T=getnum(),kth=getnum();
    29             int l=0,r=tsize,tsum=0,ans;
    30             while(l<r)
    31             {
    32                 int mid=(l+r)/2;tsum+=t[mid];
    33                 if(tsum>=kth)r=mid,ans=mid,tsum-=t[mid];
    34                 else l=mid+1;
    35             }
    36             printf("%.3lf
    ",sqrt((LL)2*C*T+(LL)l*l));
    37         }
    38         else insert(getnum()),getnum(),getnum();
    39     }
    40     return 0;
    41 }
  • 相关阅读:
    类在编写过程中的一些注意事项
    SDUT 2893-B(DP || 记忆化搜索)
    Microsoft.AlphaImageLoader滤镜解说
    解决网页版权符号模糊不清
    oninput,onpropertychange,onchange的使用方法和差别
    VB.net数据库编程(03):一个SQLserver连接查询的简单样例
    使用WinSetupFromUSB来U盘安装windowsXP(不使用win PE系统)
    ActivityManager
    IP协议
    jni编译non-numeric second argument to `wordlist' function错误
  • 原文地址:https://www.cnblogs.com/zhuohan123/p/3726306.html
Copyright © 2020-2023  润新知