hdu2897 邂逅明下

#include


int main()
{
    int n, p, q;
    while(~scanf("%d%d%d", &n, &p, &q))
    {
        n = n % (p+q);
        if(n > 0 && n <= p) printf("LOST\n");
        else printf("WIN\n");
    }
    return 0;

}

心得:注意条件是n<=p,感觉博弈原理还是没有完全搞懂,这种东西应该有空玩一下才有体会吧,像打扑克那样~

你可能感兴趣的:(hdu,ACM-博弈)