ACM-ICPC World Finals 2017

来源:互联网 发布:大数据 技术 图 编辑:程序博客网 时间:2024/04/26 11:56

Sheila is a student and she drives a typical student car: it is old, slow, rusty, and falling apart. Recently, the needle on the speedometer fell off. She glued it back on, but she might have placed it at the wrong angle. Thus, when the speedometer reads ss, her true speed is s+cs+c, where cc is an unknown constant (possibly negative).

Sheila made a careful record of a recent journey and wants to use this to compute cc. The journey consisted of nn segments. In the ithith segment she traveled a distance of didi and the speedometer read sisi for the entire segment. This whole journey took time tt. Help Sheila by computing cc.

Note that while Sheila’s speedometer might have negative readings, her true speed was greater than zero for each segment of the journey.

Input

The first line of input contains two integers nn (1n10001≤n≤1000), the number of sections in Sheila’s journey, and tt (1t1061≤t≤106), the total time. This is followed by nn lines, each describing one segment of Sheila’s journey. The ithith of these lines contains two integers didi (1di10001≤di≤1000) and sisi (|si|1000|si|≤1000), the distance and speedometer reading for the ithith segment of the journey. Time is specified in hours, distance in miles, and speed in miles per hour.

Output

Display the constant cc in miles per hour. Your answer should have an absolute or relative error of less than 10610−6.

Sample Input 1Sample Output 1
3 54 -14 010 3
3.000000000
Sample Input 2Sample Output 2
4 105 32 23 63 1


题意:

二分查找结果。

#include<iostream>    #include<cstdio>    #include<cstring>    #include<algorithm>  #include<cmath>    using namespace std;  int v[1100], d[1100], n;  double t;    int slove(double c){      double te = 0;      for(int i =0; i<n; i++){          if ((c + v[i]) <= 0)             return -1;          else              te += 1.0*d[i] /(c + v[i]);      }         if( te < t)                 // 返回1表示c取大了           return 1;      else return -1;            }    int main(){      while(scanf("%d%lf", &n,&t) != EOF){          for(int i =0; i < n; i++){              scanf("%d%d", &d[i], &v[i]);          }          double le = -1e9, ri = 1e9, mid = (le + ri) / 2;          int flag, cnt = 62;          while((ri - le) > 1e-6){              flag = slove(mid);                if(flag > 0){                  ri = mid;                  mid = (le + ri) /2;              }              else {                  le = mid;                  mid = (le + ri) /2;              }                    }          printf("%0.6lf\n", mid);      }                  return 0;  }   


原创粉丝点击