forked from sureshmangs/Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1337B - Kana and Dragon Quest game.cpp
81 lines (60 loc) · 2.04 KB
/
1337B - Kana and Dragon Quest game.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
The dragon has a hit point of x initially. When its hit point goes to 0 or under 0, 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 h, after casting this spell its hit point will become ?h2?+10. Here ?h2? denotes h divided by two, rounded down.
Lightning Strike
This spell will decrease the dragon's hit point by 10. Assume that the dragon's current hit point is h, after casting this spell its hit point will be lowered to h-10.
Due to some reasons Kana can only cast no more than n Void Absorptions and m 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.
Input
The first line contains a single integer t (1=t=1000) — the number of test cases.
The next t lines describe test cases. For each test case the only line contains three integers x, n, m (1=x=105, 0=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
inputCopy
7
100 3 4
189 3 4
64 2 3
63 2 3
30 27 7
10 9 1
69117 21 2
outputCopy
YES
NO
NO
YES
YES
YES
YES
Note
One possible casting sequence of the first test case is shown below:
Void Absorption ?1002?+10=60.
Lightning Strike 60-10=50.
Void Absorption ?502?+10=35.
Void Absorption ?352?+10=27.
Lightning Strike 27-10=17.
Lightning Strike 17-10=7.
Lightning Strike 7-10=-3.
*/
#include<bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while (t--) {
int x, n, m;
cin >> x >> n >> m;
while (x > 0 && n && x / 2 + 10 < x) {
x = x / 2 + 10;
n--;
}
if (x <= 10 * m) cout << "YES\n";
else cout << "NO\n";
}
return 0;
}