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

    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 50492   Accepted: 15800

    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. 

    Source

    思路:模拟即可。
    #include<math.h>
    #include<stdio.h>   
    #include<string.h>
    #include<algorithm>
    char yuansu[12]={'A','B','C','D','E','F','G','H','I','J','K','L'};
    int t,k,n,flag,max;
    int time[12],jdg[12];  
    char a[3][10],b[3][10],c[3][10];    
    int search(char e){
        for(int i=0;i<12;i++)  
            if(yuansu[i]==e)  
                return i;    
        return -1;  
    }  
    int main(){  
        scanf("%d",&t);
        getchar();  
        while(t--){  
            for(int i=0;i<12;i++){ jdg[i]=0;time[i]=0; }  
            for(int i=0;i<3;i++){  
                scanf("%s%s%s",a[i],b[i],c[i]);  
                getchar();  
                flag=-1;  
                if(strcmp(c[i],"even")==0){  
                    n=strlen(a[i]);  
                    for(int j=0;j<n;j++){  
                        k=search(a[i][j]);  
                        jdg[k]=1;  
                    }  
                    n=strlen(b[i]);  
                    for(int j=0;j<n;j++){  
                        k=search(b[i][j]);  
                        jdg[k]=1;  
                    }  
                }  
                else if(strcmp(c[i],"up")==0){  
                    n=strlen(a[i]);  
                    for(int j=0;j<n;j++){  
                        k=search(a[i][j]);  
                        time[k]++;  
                    }  
                    n=strlen(b[i]);  
                    for(int j=0;j<n;j++){  
                        k=search(b[i][j]);  
                        time[k]--;  
                    }  
                }  
                else if(strcmp(c[i],"down")==0){  
                    n=strlen(a[i]);  
                    for(int j=0;j<n;j++){ 
                        k=search(a[i][j]);  
                        time[k]--;  
                    }  
                    n=strlen(b[i]);  
                    for(int j=0;j<n;j++){
                        k=search(b[i][j]);  
                        time[k]++;  
                    }
                }
            }
            max=-1;  
            for(int i=0;i<12;i++){  
                if(jdg[i])    continue;  
                if(max<=fabs(time[i])){  
                    max=fabs(time[i]);  
                    flag=i;
                }
            } 
            printf("%C is the counterfeit coin and it is ",yuansu[flag]);  
            if(time[flag]<0)    printf("light.
    ");
            else    printf("heavy.
    ");  
        }
    }
    /*
    1 
    ABCD EFGH even 
    ABCI EFJK up 
    ABIJ EFGH even
    */ 
    细雨斜风作晓寒。淡烟疏柳媚晴滩。入淮清洛渐漫漫。 雪沫乳花浮午盏,蓼茸蒿笋试春盘。人间有味是清欢。
  • 相关阅读:
    python 编码格式
    mysql 允许特定IP访问
    mysql “Too many connections” 解决办法
    python 微信支付
    python RSA 加密与签名
    给列表里添加字典时被最后一个覆盖
    设置MySQL允许外网访问
    Python中print/format字符串格式化实例
    ssh 将22端口换为其它 防火墙设置
    linux ubuntu nethogs安装与介绍
  • 原文地址:https://www.cnblogs.com/cangT-Tlan/p/8834339.html
Copyright © 2011-2022 走看看