CF177E1.Space Voyage

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The Smart Beaver from ABBYY plans a space travel on an ultramodern spaceship. During the voyage he plans to visit nn planets. For planet ii aia_{i} is the maximum number of suitcases that an alien tourist is allowed to bring to the planet, and bib_{i} is the number of citizens on the planet.

The Smart Beaver is going to bring some presents from ABBYY to the planets he will be visiting. The presents are packed in suitcases, xx presents in each. The Beaver will take to the ship exactly a1+...+ana_{1}+...+a_{n} suitcases.

As the Beaver lands on the ii -th planet, he takes aia_{i} suitcases and goes out. On the first day on the planet the Beaver takes a walk and gets to know the citizens. On the second and all subsequent days the Beaver gives presents to the citizens — each of the bib_{i} citizens gets one present per day. The Beaver leaves the planet in the evening of the day when the number of presents left is strictly less than the number of citizens (i.e. as soon as he won't be able to give away the proper number of presents the next day). He leaves the remaining presents at the hotel.

The Beaver is going to spend exactly cc days traveling. The time spent on flights between the planets is considered to be zero. In how many ways can one choose the positive integer xx so that the planned voyage will take exactly cc days?

输入格式

The first input line contains space-separated integers nn and cc — the number of planets that the Beaver is going to visit and the number of days he is going to spend traveling, correspondingly.

The next nn lines contain pairs of space-separated integers ai,bia_{i},b_{i} ( 1<=i<=n1<=i<=n ) — the number of suitcases he can bring to the ii -th planet and the number of citizens of the ii -th planet, correspondingly.

The input limitations for getting 30 points are:

  • 1<=n<=1001<=n<=100
  • 1<=ai<=1001<=a_{i}<=100
  • 1<=bi<=1001<=b_{i}<=100
  • 1<=c<=1001<=c<=100

The input limitations for getting 100 points are:

  • 1<=n<=1041<=n<=10^{4}
  • 0<=ai<=1090<=a_{i}<=10^{9}
  • 1<=bi<=1091<=b_{i}<=10^{9}
  • 1<=c<=1091<=c<=10^{9}

Due to possible overflow, it is recommended to use the 64-bit arithmetic. In some solutions even the 64-bit arithmetic can overflow. So be careful in calculations!

输出格式

Print a single number kk — the number of ways to choose xx so as to travel for exactly cc days. If there are infinitely many possible values of xx , print -1.

Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    2 5
    1 5
    2 4
    

    输出#1

    1
    

说明/提示

In the first example there is only one suitable value x=5x=5 . Then the Beaver takes 1 suitcase with 5 presents to the first planet. Here he spends 2 days: he hangs around on the first day, and he gives away five presents on the second day. He takes 2 suitcases with 10 presents to the second planet. Here he spends 3 days — he gives away 4 presents on the second and the third days and leaves the remaining 2 presents at the hotel. In total, the Beaver spends 5 days traveling.

For x=4x=4 or less the Beaver won't have enough presents for the second day on the first planet, so the voyage will end too soon. For x=6x=6 and more the Beaver will spend at least one more day on the second planet, and the voyage will take too long.

首页