zoukankan      html  css  js  c++  java
  • HDU 5761 Rower Bo

    公式:a*v1/(v1*v1-v2*v2),注意a==0的时候,直接输出0.

    #pragma comment(linker, "/STACK:1024000000,1024000000")
    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<cstdlib>
    #include<algorithm>
    #include<vector>
    #include<map>
    #include<set>
    #include<queue>
    #include<stack>
    #include<iostream>
    using namespace std;
    typedef long long LL;
    const double pi = acos(-1.0), eps = 1e-8;
    void File()
    {
        freopen("D:\in.txt", "r", stdin);
        freopen("D:\out.txt", "w", stdout);
    }
    inline int read()
    {
        char c = getchar();  while (!isdigit(c)) c = getchar();
        int x = 0;
        while (isdigit(c)) { x = x * 10 + c - '0'; c = getchar(); }
        return x;
    }
    
    int a,v1,v2;
    
    int main()
    {
        while(~scanf("%d%d%d",&a,&v1,&v2))
        {
            if(a==0) printf("0
    ");
            else {
                if(v1<=v2) printf("Infinity
    ");
                else printf("%lf
    ",1.0*a*v1/(v1*v1-v2*v2));
            }
        }
        return 0;
    }
  • 相关阅读:
    Java并发之synchronized关键字和Lock接口
    Java并发之volatile关键字
    浏览器的缓存机制
    垃圾回收技术
    import和require区别
    垃圾回收机制
    TCP四次挥手
    进程
    TCP基础概念
    TCP三次握手
  • 原文地址:https://www.cnblogs.com/zufezzt/p/5710188.html
Copyright © 2011-2022 走看看