CF1337B.Kana and Dragon Quest game

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Kana was just an ordinary high school girl before a talent scout discovered her. Then, she became an idol. But different from the stereotype, she is also a gameholic.

One day Kana gets interested in a new adventure game called Dragon Quest. In this game, her quest is to beat a dragon.

The dragon has a hit point of xx initially. When its hit point goes to 00 or under 00 , it will be defeated. In order to defeat the dragon, Kana can cast the two following types of spells.

  • Void AbsorptionAssume that the dragon's current hit point is hh , after casting this spell its hit point will become h2+10\left\lfloor \frac{h}{2} \right\rfloor + 10 . Here h2\left\lfloor \frac{h}{2} \right\rfloor denotes hh divided by two, rounded down.
  • Lightning StrikeThis spell will decrease the dragon's hit point by 1010 . Assume that the dragon's current hit point is hh , after casting this spell its hit point will be lowered to h10h-10 .

Due to some reasons Kana can only cast no more than nn Void Absorptions and mm Lightning Strikes. She can cast the spells in any order and doesn't have to cast all the spells. Kana isn't good at math, so you are going to help her to find out whether it is possible to defeat the dragon.

输入格式

The first line contains a single integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases.

The next tt lines describe test cases. For each test case the only line contains three integers xx , nn , mm ( 1x1051\le x \le 10^5 , 0n,m300\le n,m\le30 ) — the dragon's intitial hit point, the maximum number of Void Absorptions and Lightning Strikes Kana can cast respectively.

输出格式

If it is possible to defeat the dragon, print "YES" (without quotes). Otherwise, print "NO" (without quotes).

You can print each letter in any case (upper or lower).

输入输出样例

  • 输入#1

    7
    100 3 4
    189 3 4
    64 2 3
    63 2 3
    30 27 7
    10 9 1
    69117 21 2

    输出#1

    YES
    NO
    NO
    YES
    YES
    YES
    YES

说明/提示

One possible casting sequence of the first test case is shown below:

  • Void Absorption 1002+10=60\left\lfloor \frac{100}{2} \right\rfloor + 10=60 .
  • Lightning Strike 6010=5060-10=50 .
  • Void Absorption 502+10=35\left\lfloor \frac{50}{2} \right\rfloor + 10=35 .
  • Void Absorption 352+10=27\left\lfloor \frac{35}{2} \right\rfloor + 10=27 .
  • Lightning Strike 2710=1727-10=17 .
  • Lightning Strike 1710=717-10=7 .
  • Lightning Strike 710=37-10=-3 .
首页