• Google Code Jam 2014资格赛【Problem A. Magic Trick】


    Problem

    Recently you went to a magic show. You were very impressed by one of the tricks, so you decided to try to figure out the secret behind it!

    The magician starts by arranging 16 cards in a square grid: 4 rows of cards, with 4 cards in each row. Each card has a different number from 1 to 16 written on the side that is showing. Next, the magician asks a volunteer to choose a card, and to tell him which row that card is in.

    Finally, the magician arranges the 16 cards in a square grid again, possibly in a different order. Once again, he asks the volunteer which row her card is in. With only the answers to these two questions, the magician then correctly determines which card the volunteer chose. Amazing, right?

    You decide to write a program to help you understand the magician's technique. The program will be given the two arrangements of the cards, and the volunteer's answers to the two questions: the row number of the selected card in the first arrangement, and the row number of the selected card in the second arrangement. The rows are numbered 1 to 4 from top to bottom.

    Your program should determine which card the volunteer chose; or if there is more than one card the volunteer might have chosen (the magician did a bad job); or if there's no card consistent with the volunteer's answers (the volunteer cheated).

    Solving this problem

    Usually, Google Code Jam problems have 1 Small input and 1 Large input. This problem has only 1 Small input. Once you have solved the Small input, you have finished solving this problem.

    Input

    The first line of the input gives the number of test cases, TT test cases follow. Each test case starts with a line containing an integer: the answer to the first question. The next 4 lines represent the first arrangement of the cards: each contains 4 integers, separated by a single space. The next line contains the answer to the second question, and the following four lines contain the second arrangement in the same format.

    Output

    For each test case, output one line containing "Case #x: y", where x is the test case number (starting from 1).

    If there is a single card the volunteer could have chosen, y should be the number on the card. If there are multiple cards the volunteer could have chosen, y should be "Bad magician!", without the quotes. If there are no cards consistent with the volunteer's answers, y should be "Volunteer cheated!", without the quotes. The text needs to be exactly right, so consider copying/pasting it from here.

    Limits

    1 ≤ T ≤ 100.
    1 ≤ both answers ≤ 4.
    Each number from 1 to 16 will appear exactly once in each arrangement.

    Sample

    Input 
     


    3
    2
    1 2 3 4
    5 6 7 8
    9 10 11 12
    13 14 15 16
    3
    1 2 5 4
    3 11 6 15
    9 10 7 12
    13 14 8 16
    2
    1 2 3 4
    5 6 7 8
    9 10 11 12
    13 14 15 16
    2
    1 2 3 4
    5 6 7 8
    9 10 11 12
    13 14 15 16
    2
    1 2 3 4
    5 6 7 8
    9 10 11 12
    13 14 15 16
    3
    1 2 3 4
    5 6 7 8
    9 10 11 12
    13 14 15 16
    Output 
     
    Case #1: 7
    Case #2: Bad magician!
    Case #3: Volunteer cheated!
    #include<stdio.h>
    #include<string.h>
    int main()
    {    freopen("E:\A-small-attempt1.in","r",stdin);
        freopen("E:\out.txt","w",stdout);
        int x,ans=0;
        scanf("%d",&x);
        int a[4][4],b[4][4];
        while(x--)
        {   ans++;
            int i,j,x1,y1,flag=0,num;
            scanf("%d",&x1);
            x1-=1;
            for(i=0; i<4; i++)
                for(j=0; j<4; j++)
                    scanf("%d",&a[i][j]);
            scanf("%d",&y1);
            y1-=1;
            for(i=0; i<4; i++)
                for(j=0; j<4; j++)
                    scanf("%d",&b[i][j]);
            for(i=0;i<4;i++)
             for(j=0;j<4;j++)
                if(a[x1][i]==b[y1][j])
                {num=a[x1][i];
                   flag++;}
            if(flag==1)
                printf("Case #%d: %d
    ",ans,num);
            else if(flag>1)
                     printf("Case #%d: Bad magician!
    ",ans);
            else  printf("Case #%d: Volunteer cheated!
    ",ans);
    
        }
        return 0;
    }
    我愿付出努力,只为更好的明天
  • 相关阅读:
    25个PHP游戏编程脚本代码(转)
    [AJAXJSP]使用DWR框架验证用户名是否存在
    [AJAXJSP]验证用户名存在
    [Java基础]多线程求和小例子
    [JAVA算法]求子数组的最大和
    [JQury] slideToggle闪烁问题及解决办法
    [JAVA算法]递归求Fibbonicc序列方法
    Easy ui Datagrid(下拉、复选、只输入数字、文本) 追加、删除、更改
    Easy ui DataGrid 添加复选框 与 下拉
    Easy ui DataGrid 列文字多串行问题解决方案
  • 原文地址:https://www.cnblogs.com/castledrv/p/3665419.html
Copyright © 2020-2023  润新知