zoukankan      html  css  js  c++  java
  • poj 1013 Counterfeit Dollar

    Counterfeit Dollar
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 33094   Accepted: 10495

    Description

    Sally Jones has a dozen Voyageur silver dollars. However, only eleven of the coins are true silver dollars; one coin is counterfeit even though its color and size make it indistinguishable from the real silver dollars. The counterfeit coin has a different weight from the other coins but Sally does not know if it is heavier or lighter than the real coins.
    Happily, Sally has a friend who loans her a very accurate balance scale. The friend will permit Sally three weighings to find the counterfeit coin. For instance, if Sally weighs two coins against each other and the scales balance then she knows these two coins are true. Now if Sally weighs
    one of the true coins against a third coin and the scales do not balance then Sally knows the third coin is counterfeit and she can tell whether it is light or heavy depending on whether the balance on which it is placed goes up or down, respectively.
    By choosing her weighings carefully, Sally is able to ensure that she will find the counterfeit coin with exactly three weighings.

    Input

    The first line of input is an integer n (n > 0) specifying the number of cases to follow. Each case consists of three lines of input, one for each weighing. Sally has identified each of the coins with the letters A--L. Information on a weighing will be given by two strings of letters and then one of the words ``up'', ``down'', or ``even''. The first string of letters will represent the coins on the left balance; the second string, the coins on the right balance. (Sally will always place the same number of coins on the right balance as on the left balance.) The word in the third position will tell whether the right side of the balance goes up, down, or remains even.

    Output

    For each case, the output will identify the counterfeit coin by its letter and tell whether it is heavy or light. The solution will always be uniquely determined.

    Sample Input

    1 
    ABCD EFGH even 
    ABCI EFJK up 
    ABIJ EFGH even 

    Sample Output

    K is the counterfeit coin and it is light. 
     1 /* 
     2    功能Function Description:     POJ-1013 Counterfeit Dollar  策略问题
     3    开发环境Environment:          DEV C++ 4.9.9.1
     4    技术特点Technique:
     5    版本Version:
     6    作者Author:                     可笑痴狂
     7    日期Date:                     20120726
     8    备注Notes:
     9         由于该题必然有确定的判定,所以简单的可以这么想:
    10         设置一个标记数组,每次称球的时候,如果是"even"则把对应的设置为"真东西",即置为10,
    11         如果是"up"或"donw" 则把未分辨出真假的硬币中flag数组中对应的 ++ 或者 --,直到最后。那么操作之后,
    12         flag中存在没有辨认出真的,就是一系列的例如: -1,-2,1,2,3等数值,那么
    13         假东西就是其中绝对值最大的那个!!------被怀疑次数最多,所以它为假。
    14 */
    15 #include<stdio.h>
    16 #include<string.h>
    17 #include<math.h>
    18 
    19 int main()
    20 {
    21     int n,k,i,t,len,max;
    22     char s1[13],s2[13],temp[10];
    23     int flag[12];
    24     scanf("%d",&n);
    25     while(n--)
    26     {
    27         memset(flag,0,sizeof(flag));
    28         for(t=1;t<=3;++t)
    29         {
    30             scanf("%s%s%s",s1,s2,temp);
    31             len=strlen(s1);              //两边个数肯定相等,所以两边长度也一样  
    32             if(strcmp(temp,"even")==0)
    33             {
    34                 for(i=0;i<len;++i)
    35                 {
    36                     flag[s1[i]-'A']=10;  //说明两边都为真,将标记数组置为10
    37                     flag[s2[i]-'A']=10;
    38 
    39                 }
    40             }
    41             else if(strcmp(temp,"up")==0)//说明左边重
    42             {
    43                 for(i=0;i<len;++i)
    44                 {
    45                     if(flag[s1[i]-'A']!=10)
    46                         ++flag[s1[i]-'A'];  //左边加一
    47                     if(flag[s2[i]-'A']!=10)
    48                         --flag[s2[i]-'A'];  //右边减一
    49 
    50                 }
    51             }
    52             else
    53             {
    54                 for(i=0;i<len;++i)      //说明右边重
    55                 {
    56                     if(flag[s1[i]-'A']!=10)
    57                         --flag[s1[i]-'A'];  //左边减一
    58                     if(flag[s2[i]-'A']!=10)
    59                         ++flag[s2[i]-'A'];  //右边加一
    60                 }
    61             }
    62         }
    63         max=0;
    64         k=0;
    65         for(i=0;i<12;++i)
    66         {
    67             if(flag[i]==10)
    68                 continue;
    69             if(max<=abs(flag[i]))
    70             {
    71                 max=abs(flag[i]);
    72                 k=i;
    73             }
    74         }
    75         if(flag[k]>0)
    76             printf("%c is the counterfeit coin and it is heavy.\n",'A'+k);
    77         else
    78             printf("%c is the counterfeit coin and it is light.\n",'A'+k);
    79     }
    80     return 0;
    81 }
    功不成,身已退
  • 相关阅读:
    Linux命令ll输出后各个字段的含义
    常用的Linux指令
    纪念逝去的2016
    Grails默认首页的修改
    js中构造字符串若放入Grails中gsp的<g:link>标签出错
    Grails的redirect无法跳转时的一个可能原因
    Grails连接外部数据库注意事项Could not determine Hibernate dialect for database name [Oracle]!
    ICPC2020济南A Matrix Equation
    最后的挣扎
    [省选联考 2020 A/B 卷] 信号传递
  • 原文地址:https://www.cnblogs.com/dongsheng/p/2610255.html
Copyright © 2011-2022 走看看