CF1810D.Climbing the Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The snails are climbing a tree. The tree height is hh meters, and snails start at position 00 .

Each snail has two attributes aa and bb ( a>ba > b ). Starting from the 11 -st day, one snail climbs the tree like this: during the daylight hours of the day, he climbs up aa meters; during the night, the snail rests, and he slides down bb meters. If on the nn -th day, the snail reaches position hh for the first time (that is, the top of the tree), he will finish climbing, and we say that the snail spends nn days climbing the tree. Note that on the last day of climbing, the snail doesn't necessarily climb up aa meters, in case his distance to the top is smaller than aa .

Unfortunately, you don't know the exact tree height hh at first, but you know that hh is a positive integer. There are qq events of two kinds.

  • Event of type 11 : a snail with attributes aa , bb comes and claims that he spent nn days climbing the tree. If this message contradicts previously adopted information (i. e. there is no tree for which all previously adopted statements and this one are true), ignore it. Otherwise, adopt it.
  • Event of type 22 : a snail with attributes aa , bb comes and asks you how many days he will spend if he climbs the tree. You can only give the answer based on the information you have adopted so far. If you cannot determine the answer precisely, report that.

You need to deal with all the events in order.

输入格式

Each test contains multiple test cases. The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. Then follows their description.

The first line of each test case contains one integer qq ( 1q21051\le q \le 2\cdot 10^5 ) — the number of events.

For the following qq lines, the first integer of each line is either 11 or 22 , denoting the event type.

If the event type is 11 , then three integers aa , bb , and nn ( 1a,b,n1091\le a,b,n \le 10^9 , a>ba>b ) follow.

If the event type is 22 , then two integers aa and bb ( 1a,b1091\le a,b \le 10^9 , a>ba>b ) follow.

It is guaranteed that the sum of qq over all test cases does not exceed 21052\cdot 10^5 .

输出格式

For each test case, output qq integers in one line, one for each event, in order. Specifically,

  • for each event of type 11 , if you adopt the message, output 11 ; if you ignore it, output 00 ;
  • for each event of type 22 , output an integer denoting the number of days that the snail will spend. If you cannot determine it, output 1-1 .

输入输出样例

  • 输入#1

    5
    3
    1 3 2 5
    2 4 1
    2 3 2
    3
    1 6 5 1
    2 3 1
    2 6 2
    3
    1 4 2 2
    1 2 1 3
    2 10 2
    9
    1 7 3 6
    1 2 1 8
    2 5 1
    1 10 9 7
    1 8 1 2
    1 10 5 8
    1 10 7 7
    2 7 4
    1 9 4 2
    9
    1 2 1 6
    1 8 5 6
    1 4 2 7
    2 9 1
    1 5 1 4
    1 5 2 7
    1 7 1 9
    1 9 1 4
    2 10 8

    输出#1

    1 2 5
    1 -1 1
    1 0 1
    1 0 -1 0 0 0 1 8 0
    1 0 0 1 0 0 0 0 1

说明/提示

In the first test case, we can determine h=7h=7 through the first message, so we know the second snail and the third snail need to spend 22 and 55 days respectively to reach the top.

Let's show how the second snail climbs:

  • During the daylight hours of the 11 st day: climbs up 44 meters, now at position 44 .
  • During the night of the 11 st day: slides down 11 meters, now at position 33 .
  • During the daylight hours of the 22 nd day: climbs up 44 meters, now at position 77 (reaches the top).

In the third test case, the second snail's message contradicts the first snail's, because the second snail says he spent 33 days, and he can climb at most 1+1+2=41+1+2=4 meters in the first 33 days. However, the first snail only needs 11 day to climb 44 meters.

首页