CF792F.Mages and Monsters
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 xi and yi — 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 tj and hj — monster kills Vova's character in tj seconds and has hj 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 hj damage to it in no more than tj 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 tj 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<=105,1<=m<=1012) — 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 ki , ai and bi (1<=ki<=2,1<=ai,bi<=106) .
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 ki=1 , then character learns spell with x=(ai+j) mod 106+1 , y=(bi+j) mod 106+1 .
- If ki=2 , then you have to determine if Vova is able to win the fight against monster with t=(ai+j) mod 106+1 , h=(bi+j) mod 106+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.