码迷,mamicode.com
首页 > 其他好文 > 详细

【HDU1846】Brave Game(博弈论)

时间:2018-08-15 20:29:42      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:ble   fir   main   题解   show   lse   syn   cpp   ace   

题面

HDU

题解

\(Bash\ Game\)模板题

#include<iostream>
using namespace std;
int T,n,m;
int main()
{
    ios::sync_with_stdio(false);
    cin>>T;
    while(T--)
    {
        cin>>n>>m;
        if(n%(m+1))cout<<"first"<<endl;
        else cout<<"second"<<endl;
    }
    return 0;
}

【HDU1846】Brave Game(博弈论)

标签:ble   fir   main   题解   show   lse   syn   cpp   ace   

原文地址:https://www.cnblogs.com/cjyyb/p/9483571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!