测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10936. Mages and Monsters

编程题 普及/提高-

题目描述

Vova plays a computer game known as Mages and Monsters. Vova's character is a mage. Though as he has just started, his character knows no spells.

Vova's character can learn new spells during the game. Every spell is characterized by two values $x_{i}$ and $y_{i}$ — damage per second and mana cost per second, respectively. Vova doesn't have to use a spell for an integer amount of seconds. More formally, if he uses a spell with damage $x$ and mana cost $y$ for $z$ seconds, then he will deal $x·z$ damage and spend $y·z$ mana (no rounding). If there is no mana left (mana amount is set in the start of the game and it remains the same at the beginning of every fight), then character won't be able to use any spells. It is prohibited to use multiple spells simultaneously.

Also Vova can fight monsters. Every monster is characterized by two values $t_{j}$ and $h_{j}$ — monster kills Vova's character in $t_{j}$ seconds and has $h_{j}$ health points. Mana refills after every fight (or Vova's character revives with full mana reserve), so previous fights have no influence on further ones.

Vova's character kills a monster, if he deals $h_{j}$ damage to it in no more than $t_{j}$ seconds using his spells (it is allowed to use more than one spell in a fight) and spending no more mana than he had at the beginning of the fight. If monster's health becomes zero exactly in $t_{j}$ seconds (it means that the monster and Vova's character kill each other at the same time), then Vova wins the fight.

You have to write a program which can answer two types of queries:

- $1$ $x$ $y$ — Vova's character learns new spell which deals $x$ damage per second and costs $y$ mana per second.
- $2$ $t$ $h$ — Vova fights the monster which kills his character in $t$ seconds and has $h$ health points.

Note that queries are given in a different form. Also remember that Vova's character knows no spells at the beginning of the game.

For every query of second type you have to determine if Vova is able to win the fight with corresponding monster.

输入格式

The first line contains two integer numbers $q$ and $m$ $(2<=q<=10^{5},1<=m<=10^{12})$ — the number of queries and the amount of mana at the beginning of every fight.

$i$ -th of each next $q$ lines contains three numbers $k_{i}$ , $a_{i}$ and $b_{i}$ $(1<=k_{i}<=2,1<=a_{i},b_{i}<=10^{6})$ .

Using them you can restore queries this way: let $j$ be the index of the last query of second type with positive answer ( $j=0$ if there were none of these).

- If $k_{i}=1$ , then character learns spell with $x=(a_{i}+j)$ $mod$ $10^{6}+1$ , $y=(b_{i}+j)$ $mod$ $10^{6}+1$ .
- If $k_{i}=2$ , then you have to determine if Vova is able to win the fight against monster with $t=(a_{i}+j)$ $mod$ $10^{6}+1$ , $h=(b_{i}+j)$ $mod$ $10^{6}+1$ .

输出格式

For every query of second type print YES if Vova is able to win the fight with corresponding monster and NO otherwise.

输入输出样例

输入 #1
3 100
1 4 9
2 19 49
2 19 49
输出 #1
YES
NO

说明/提示

In first example Vova's character at first learns the spell with $5$ damage and $10$ mana cost per second. Next query is a fight with monster which can kill character in $20$ seconds and has $50$ health points. Vova kills it in $10$ seconds (spending $100$ mana). Next monster has $52$ health, so Vova can't deal that much damage with only $100$ mana.
上一题 去做题 下一题