HDU 1846 brave game (simple game)

Source: Internet
Author: User
HDU 1846 brave game (simple game)

ACM

Question address:
HDU 1846 brave game

Question:
Chinese.

Analysis:
Getting started with games.
If n = m + 1, the maximum number of persons to take is m, so how many persons to take first and then all persons to take away can take away.
Therefore, you can determine N % (m + 1.

Code:

/**  Author:      illuz <iilluzen[at]gmail.com>*  File:        1846.cpp*  Create Date: 2014-09-20 10:05:26*  Descripton:  game*/#include <iostream>using namespace std;int t, n, m;int main() {ios_base::sync_with_stdio(0);cin >> t;while (t--) {cin >> n >> m;if (n % (m + 1))cout << "first\n";elsecout << "second\n";}return 0;}


HDU 1846 brave game (simple 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.