链接:点击打开链接
巴什博弈,抢报n-k(m+1)的人可以获胜,只有当n%(m+1)==0时先手赢
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n,m,t;
cin>>t;
while(t--)
{
cin>>n>>m;
if(n%(m+1)<=m&&n%(m+1)!=0)
cout<<"first"<<endl;
else
cout<<"second"<<endl;
}
return 0;
}