HDU5011-Game (game)

Source: Internet
Author: User

Question Link


Question: In the stone game, two people take turns to take the stones. There are rules for taking the stones. Either drop the stones, or divide the stones into two heaps, if you fail.

Idea: In a simple Nim game, when all values are different or 0, the first hand fails.

Code:

#include <iostream>#include <cstdio>#include <cstring>#include <cmath>#include <algorithm>using namespace std;const int MAXN = 100005;int arr[MAXN];int main() {    int n;    while (scanf("%d", &n) != EOF) {        for (int i = 0; i < n; i++)             scanf("%d", &arr[i]);        int sum = 0;           for (int i = 0; i < n; i++)            sum ^= arr[i];        if (sum == 0)            printf("Lose\n");        else            printf("Win\n");    }    return 0;}


HDU5011-Game (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.