cf635div2

B. Kana and Dragon Quest game

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 Absorption

    Assume that the dragon's current hit point is hh, after casting this spell its hit point will become h/2+10. Here h2 denotes hh divided by two, rounded down.

  • Lightning Strike

    This 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 nVoid Absorptions and mLightning 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.

Input

The first line contains a single integer tt (1t10001≤t≤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≤x≤105, 0n,m300≤n,m≤30)  — the dragon's intitial hit point, the maximum number of Void Absorptions and Lightning Strikes Kana can cast respectively.

Output

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).

Example
input
7
100 3 4
189 3 4
64 2 3
63 2 3
30 27 7
10 9 1
69117 21 2
output
YES
NO
NO
YES
YES
YES
YES

当时这个题没过,round down 的意思是四舍五入,那不应该就是(h + 1) / 2
WA了,今早上看到其他人写的,h/2

好吧,人家是向下取整的意思
????
#include <bits/stdc++.h>

using namespace std;
int t, x, n, m, ans;

int main() {
   //freopen("in", "r", stdin);
    ios::sync_with_stdio(0);
    cin >> t;
    while (t--) {
        cin >> x >> n >> m;
        ans = m * 10;
        for(int i = 0; i < n; i++) {
            if (ans >= x) break;
            x = x  / 2 + 10;
        }
        if (ans >= x)
            cout << "YES" << endl;
        else cout << "NO" << endl;
    }
    return 0;
}

猜你喜欢

转载自www.cnblogs.com/xcfxcf/p/12710169.html