시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 (추가 시간 없음) 256 MB167642.857%

문제

Serge, the chef of the famous restaurant “Salt, Pepper & Garlic” is trying to obtain his first Michelin star. He has been informed that a secret expert plans to visit his restaurant this evening.

Even though the expert’s name hasn’t been disclosed, Serge is certain he knows which dish from the menu will be ordered as well as what the taste preferences of the expert are. Namely, the expert requires an extremely precise proportion of salt, pepper and garlic powder in his dish.

Serge keeps a set of bottles with mixtures of salt, pepper and garlic powder on a special shelf in the kitchen. For each bottle, he knows the exact amount of each of the ingredients in kilograms. Serge can combine any number of bottled mixtures (or just use one of them directly) to get a mixture of particular proportions needed for a certain dish.

Luckily, the absolute amount of a mixture that needs to be added to a dish is so small that you can assume that the amounts in the bottles will always be sufficient. However, the numeric values describing the proportions may be quite large.

Serge would like to know whether it is possible to obtain the expert’s favourite mixture from the available bottles, and if so—what is the smallest possible number of bottles needed to achieve that.

Furthermore, the set of bottles on the shelf may change over time as Serge receives new ones or lends his to other chefs. So he would like to answer this question after each such change.

For example, assume that expert’s favorite mixture is 1 : 1 : 1 and there are three bottles of mixtures on the shelf (Table 1): 

Mixture The amount of an ingredient in a bottle, kg
Salt Pepper Garlic powder
1 10 20 30
2 300 200 100
3 12 15 27

Table 1: Bottles on the shelf

To obtain the desired mixture it is enough to use an equivalent amount of mixtures from bottles 1 and 2. If bottle 2 is removed, then it is no longer possible to obtain it.

Write a program that helps Serge to solve this task!

입력

The first row contains three non-negative integers Sf, Pf and Gf (0 ≤ Sf, Pf, Gf; 0 < Sf + Pf + Gf ≤ 106) describing the amount of salt, pepper and garlic powder in the expert’s favourite mixture. For any real α > 0, (αSf, αPf, αGf) also is an expert’s favourite mixture. In the second row, there is a positive integer N (number of changes on the shelf, N ≤ 100 000). You should assume that initially the shelf is empty. Each of the next N rows describes a single change on the shelf:

  • If a new bottle is added, the row contains capital letter A followed by three non-negative integers Si, Pi and Gi (0 ≤ Si, Pi, Gi; 0 < Si+Pi+Gi ≤ 106) describing the amount of salt, pepper and garlic powder in the added bottle. Added bottles are numbered consecutively by unique integers starting from 1, that is, the i-th bottle corresponds to the i-th added bottle in the input data.
  • If a particular bottle is removed from the shelf, the row contains capital letter R followed by the integer — the bottle number ri. All values ri in the removals are unique, ri never exceeds total number of bottles added thus far.

출력

Output N rows. The j-th row (1 ≤ j ≤ N) should contain the number xj, the smallest number of bottles needed to prepare a mixture with the expert’s favourite proportions of salt, pepper and garlic powder using the bottles available after the first j changes on the shelf, or 0 if it is not possible.

서브태스크

번호배점제한
113

N ≤ 50, 0 < Si + Pi + Gi ≤ 102

217

N ≤ 500, 0 < Si + Pi + Gi ≤ 103

330

N ≤ 5000, 0 < Si + Pi + Gi ≤ 104

440

No further constraints

예제 입력 1

1 2 3
6
A 5 6 7
A 3 10 17
R 1
A 15 18 21
A 5 10 15
R 3

예제 출력 1

0
2
0
2
1
1

힌트

Pay attention that bottles 1 and 3 contain the same proportions of salt, pepper and garlic powder.

채점 및 기타 정보

  • 예제는 채점하지 않는다.