5.23 VJ D - Kana and Dragon Quest game

Posted syrupwrld999

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.23 VJ D - Kana and Dragon Quest game相关的知识,希望对你有一定的参考价值。

#include<bits/stdc++.h>
#define ll long long
using namespace std;
/*
题意:怪物血量为x,可以使用两种技能,分别为x/2+10和x-10,当x<=10时不能使用技能1
*/
int main()
{
    int t,x,n,m;
    cin>>t;
    for(int i=0; i<t; i++)
    {
        cin>>x>>n>>m;
        while(n--)//循环使用技能1直到x<=10或技能1用完
        {
            if(x<=10)
            {
                break;
            }
            x/=2;
            x+=10;
        }
        if(x<=m*10)//判断技能2是否够打完怪物剩下的血量(x)
        {
            cout<<"YES"<<endl;
        }
        else
        {
            cout<<"NO"<<endl;
        }
    }
}

以上是关于5.23 VJ D - Kana and Dragon Quest game的主要内容,如果未能解决你的问题,请参考以下文章

5.23 Vj B - Balanced Array

Vj A - Phoenix and Balance

原生拖拽,拖放事件(drag and drop)

5.19 Vj E - Nastya and Rice

VJ - dp - Monkey and Banana - 最长单调序列

PYQT5 (十八)文件拖放(drag and drop)并获取文件信息