UVA340 Master-Mind Hints

问题描述:

MasterMind is a game for two players. One of them, Designer, selects a secret code. The other, Breaker, tries to break it. A code is no more than a row of colored dots. At the beginning of a game, the players agree upon the length N that a code must have and upon the colors that may occur in a code.

In order to break the code, Breaker makes a number of guesses, each guess itself being a code. After each guess Designer gives a hint, stating to what extent the guess matches his secret code.

 

In this problem you will be given a secret code tex2html_wrap_inline35 and a guess tex2html_wrap_inline37 , and are to determine the hint. A hint consists of a pair of numbers determined as follows.

match is a pair (i,j), tex2html_wrap_inline41 and tex2html_wrap_inline43 , such that tex2html_wrap_inline45 . Match (i,j) is called strong when i =j, and is called weak otherwise. Two matches (i,j) and (p,q) are called independent when i = p if and only if j = q. A set of matches is called independent when all of its members are pairwise independent.

 

Designer chooses an independent set M of matches for which the total number of matches and the number of strong matches are both maximal. The hint then consists of the number of strong followed by the number of weak matches in M. Note that these numbers are uniquely determined by the secret code and the guess. If the hint turns out to be (n,0), then the guess is identical to the secret code.

 

输入:

The input will consist of data for a number of games. The input for each game begins with an integer specifying N (the length of the code). Following these will be the secret code, represented as N integers, which we will limit to the range 1 to 9. There will then follow an arbitrary number of guesses, each also represented as N integers, each in the range 1 to 9. Following the last guess in each game will be N zeroes; these zeroes are not to be considered as a guess.

 

Following the data for the first game will appear data for the second game (if any) beginning with a new value for N. The last game in the input will be followed by a single zero (when a value for N would normally be specified). The maximum value for N will be 1000.

 

输出:

The output for each game should list the hints that would be generated for each guess, in order, one hint per line. Each hint should be represented as a pair of integers enclosed in parentheses and separated by a comma. The entire list of hints for each game should be prefixed by a heading indicating the game number; games are numbered sequentially starting with 1. Look at the samples below for the exact format.

 

解题思路:

遍历猜测序列即可算出猜测正确的数字数A,分别统计答案序列和猜测序列各个数字的出现次数求取其中的最小值B,则B - A就是在两个序列中都出现但位置不对的数字数量

 

AC:

#include "iostream"
#include "cstdio"

using namespace std;

const int MAX_N = 100000;
int n;
int a[MAX_N];
int b[MAX_N];
int cnt = 0;


int main(int argc, char const *argv[])
{
    while(scanf("%d", &n) == 1 && n)
    {
        printf("Game %d:\n", ++cnt);
        for(int i = 0; i < n; i++)
        {
            scanf("%d", &a[i]);
        }

        while(true)
        {
            int A = 0;
            int B = 0;
            
            for(int i = 0; i < n; i++)
            {
                scanf("%d", &b[i]);
                if(a[i] == b[i])
                    A++;
            }

            if(b[0] == 0) break;

            for(int d = 1; d <= 9; d++)
            {
                int c1 = 0, c2 = 0;
                for(int i = 0; i < n; i++)
                {
                    if(a[i] == d) c1++;
                    if(b[i] == d) c2++;
                }
                B += (c1 < c2 ? c1 : c2);
            }

            printf("    (%d,%d)\n", A, B - A);
        }
    }
    return 0;
}

 

总结:

难点在于找出数字正确位置相同的数字数量和数字正确但位置不同的数字数量之间的关系。

posted @ 2015-12-03 22:33  小图书馆  阅读(73)  评论(0)    收藏  举报