zoukankan      html  css  js  c++  java
  • Counterfeit Dollar -----判断12枚钱币中的一个假币

     Counterfeit Dollar
    Time Limit:1000MS     Memory Limit:10000KB     64bit IO Format:%I64d & %I64u
    Submit Status

    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 #include<iostream>
     2 #include<cmath>
     3 using namespace std;
     4 
     5 int main(void)
     6 {
     7     int cases;
     8     cin>>cases;
     9     for(int c=1;c<=cases;c++)
    10     {
    11         char left[3][6],right[3][6],status[3][6];
    12 
    13         int time['L'+1]={0};  //标记各个字母被怀疑的次数
    14         bool zero['L'+1]={false};  //标记绝对为真币的字母(令天枰平衡的所有字母)
    15 
    16         for(int k=0;k<3;k++)
    17             cin>>left[k]>>right[k]>>status[k];    
    18 
    19         for(int i=0;i<3;i++)
    20         {
    21             switch(status[i][0])  //检查天枰状态
    22             {
    23                 case 'u':     //up,天枰左重右轻
    24                     {
    25                         for(int j=0;left[i][j];j++)
    26                         {
    27                             time[ left[i][j] ]++;  //左重
    28                             time[ right[i][j] ]--;  //右轻
    29                         }
    30                         break;
    31                     }
    32                 case 'd':     //down,天枰左轻右重
    33                     {
    34                         for(int j=0;left[i][j];j++)
    35                         {
    36                             time[ left[i][j] ]--;  //左轻
    37                             time[ right[i][j] ]++;  //右重
    38                         }
    39                         break;
    40                     }
    41                 case 'e':     //down,天枰平衡
    42                     {
    43                         for(int j=0;left[i][j];j++)
    44                         {
    45                             zero[ left[i][j] ]=true;   //绝对真币
    46                             zero[ right[i][j] ]=true;   //绝对真币
    47                         }
    48                         break;
    49                     }
    50             }
    51         }
    52 
    53         int max=-1;  //查找被怀疑程度最高的硬币(假币)
    54         char alpha;
    55         for(int j='A';j<='L';j++)
    56         {
    57             if(zero[j])  //绝对真币
    58                 continue;
    59 
    60             if(max<=abs(time[j]))
    61             {
    62                 max=abs(time[j]);
    63                 alpha=j;
    64             }
    65         }
    66 
    67         cout<<alpha<<" is the counterfeit coin and it is ";
    68         if(time[alpha]>0)
    69             cout<<"heavy."<<endl;
    70         else
    71             cout<<"light."<<endl;
    72     }
    73     return 0;
    74 }
    View Code
  • 相关阅读:
    18. 4Sum(双指针)
    17. Letter Combinations of a Phone Number(bfs)
    16. 3Sum Closest(双指针)
    15. 3Sum(字典) (双指针)
    14. Longest Common Prefix(暴力循环)
    8. String to Integer (atoi)
    54. Spiral Matrix(剑指offer--19)
    Baidu 推荐技术平台(offer)
    134. Gas Station(数学定理依赖题)
    187. Repeated DNA Sequences(建立词典,遍历一遍 o(n))
  • 原文地址:https://www.cnblogs.com/kuangdaoyizhimei/p/3231788.html
Copyright © 2011-2022 走看看