hdu1730 Nim Game

Source: Internet
Author: User

Abstract the distance as the number of stones. Although here the number of stones can be increased, but no matter how the increase, will not affect the results, because you have increased, there must be reduced.

So similar to take stones, observe the equilibrium state, if (x2-x1-1) ^...==0, will lose.

WA several rounds, the absolute value forgot to add!

#include <stdio.h>#include<string.h>#include<stdlib.h>intMain () {inti,j,n,m;  while(SCANF ("%d%d", &n,&m)! =EOF) {        intans=0; intret; intnum=0;  for(i=0; i<n;i++)        {            intx1,x2; scanf ("%d%d",&x1,&x2); RET=abs (X2-X1)-1; Ans^=ret; }        if(ans==0) {printf ("Bad luck!\n"); }        Else{printf ("I win!\n"); }    }}

hdu1730 Nim Game

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.