A10936 | Mages and Monsters
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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$ .
$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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted