11892-enimen (game)

Source: Internet
Author: User
Ultraviolet A 11892-enimen

Question Link

Given n piles of stones, the two can take turns. One or more piles of stones can be taken at a time, then the next person must continue to take the heap, win the last stone, and ask who wins.

Train of Thought: Simply put, the latter hand may only win if the heap number is even and the number is 1.

Code:

#include <stdio.h>#include <string.h>const int N = 20005;int t, n, a[N];bool judge() {if (n % 2) return false;for (int i = 0; i < n; i++)if (a[i] != 1) return false;return true;}int main() {scanf("%d", &t);while (t--) {scanf("%d", &n);for (int i = 0; i < n; i++)scanf("%d", &a[i]);if (judge()) printf("piloop\n");else printf("poopi\n"); }return 0;}


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.