HDU 1527 —— 取石子游戏(入门水题)

原题:http://acm.hdu.edu.cn/showproblem.php?pid=1527


#include
#include
using namespace std;
int a, b;
int main(){
    while(cin>>a>>b){
        int k = abs(a-b);
        double tmp = (sqrt(5)+1)/2.0;
        int n = k*tmp;
        if(n == min(a, b))  cout<<"0"<


你可能感兴趣的:(博弈)