CF1217B.Zmei Gorynich

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are fighting with Zmei Gorynich — a ferocious monster from Slavic myths, a huge dragon-like reptile with multiple heads!

Initially Zmei Gorynich has xx heads. You can deal nn types of blows. If you deal a blow of the ii -th type, you decrease the number of Gorynich's heads by min(di,curX)min(d_i, curX) , there curXcurX is the current number of heads. But if after this blow Zmei Gorynich has at least one head, he grows hih_i new heads. If curX=0curX = 0 then Gorynich is defeated.

You can deal each blow any number of times, in any order.

For example, if curX=10curX = 10 , d=7d = 7 , h=10h = 10 then the number of heads changes to 1313 (you cut 77 heads off, but then Zmei grows 1010 new ones), but if curX=10curX = 10 , d=11d = 11 , h=100h = 100 then number of heads changes to 00 and Zmei Gorynich is considered defeated.

Calculate the minimum number of blows to defeat Zmei Gorynich!

You have to answer tt independent queries.

输入格式

The first line contains one integer tt ( 1t1001 \le t \le 100 ) – the number of queries.

The first line of each query contains two integers nn and xx ( 1n1001 \le n \le 100 , 1x1091 \le x \le 10^9 ) — the number of possible types of blows and the number of heads Zmei initially has, respectively.

The following nn lines of each query contain the descriptions of types of blows you can deal. The ii -th line contains two integers did_i and hih_i ( 1di,hi1091 \le d_i, h_i \le 10^9 ) — the description of the ii -th blow.

输出格式

For each query print the minimum number of blows you have to deal to defeat Zmei Gorynich.

If Zmei Gorynuch cannot be defeated print 1-1 .

输入输出样例

  • 输入#1

    3
    3 10
    6 3
    8 2
    1 4
    4 10
    4 1
    3 2
    2 6
    1 100
    2 15
    10 11
    14 100
    

    输出#1

    2
    3
    -1
    

说明/提示

In the first query you can deal the first blow (after that the number of heads changes to 106+3=710 - 6 + 3 = 7 ), and then deal the second blow.

In the second query you just deal the first blow three times, and Zmei is defeated.

In third query you can not defeat Zmei Gorynich. Maybe it's better to convince it to stop fighting?

首页