青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

Counterfeit Dollar

該題ZOJ題號為1184, POJ題號為1013.

題目描述如下:

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.

【分析】該題屬于枚舉范疇。沒有比較巧妙的可以一步到位求出結果的方法,可以一次枚舉這12枚錢幣,假設其為假,然后代入到3次稱量判斷中,如果使三次判斷都成立且判斷結果相同,那么毫無疑問這枚錢幣是假的。首先可以進行預處理,比較結果為EVEN的可以判定兩邊的錢幣都是真的,不必參與到枚舉中來。對于上面的輸入用例,假設K是假的,代入判斷1,k不出現,那么兩邊重量應相等,成立。繼續稱量2k出現在右邊,結果是UP,亦成立,且據此知道k是較輕的,因此k在右邊,而天平右邊翹起。下面進行判斷3

k沒有出現在天平兩邊,而且結果為even成立。通過三次稱量判斷,且結果一致,可以肯定k就是假幣,且較輕。為了說明為題,對于上例假設L是假幣。代入稱量1,L不出現,結果even成立,稱量2,L不出現,結果為up不成立,因為只有一枚假幣,現假設L為假幣,而在L不出現的情況下天平不平衡,故L不是假幣。按照上述算法進行枚舉,遇到可以肯定是假幣的貨幣時算法終止。

       需要注意的是當假設一枚硬幣為假且通過三次稱量時,需要判斷三次稱量k的輕重情況是否一致,如果一次推得該硬幣較輕,而另一次卻判斷該硬幣較重,那么該硬幣肯定不是假幣。在判斷是需要注意當左右兩邊都不出現假設為假的硬幣時,需要特殊處理,不能簡單的比較3次硬幣輕重是否相同,在左右兩邊都不出現該硬幣的情況下,不應該把這次測量納入比較的范疇。除此之外需要的就是細心了,本人因為打印的時候多打印了個the,WA6次,檢查了半個多小時,有種欲哭無淚的感覺。

具體代碼如下:

  1 #include <stdio.h>
  2 #include <stdlib.h>
  3 #include <string.h>
  4 
  5 char left[3][7], right[3][7];
  6 char result[3][6];
  7 int a[15];
  8 int w;
  9 
 10 int judge(char ch)
 11 {
 12     int r1, r2;
 13     int i;
 14     int a[3];
        /*對當前假設的硬幣進行判斷*/
 15     for (i = 0; i < 3++i)
 16     {
 17         r1 = strcmp(result[i], "even");
 18         r2 = strcmp(result[i], "up");
 19         if (strchr(left[i], ch) != NULL)
 20         {
 21             if (r1 == 0)
 22                 return 0;
 23             else if (r2  == 0)
 24                 a[i] = 1;
 25             else 
 26                 a[i] = -1;
 27         }
 28         else if (strchr(right[i], ch) != NULL)
 29         {
 30             if (r1 == 0)
 31                 return 0;
 32             else if (r2 == 0)
 33                 a[i] = -1;
 34             else 
 35                 a[i] = 1;
 36         }
 37         else
 38         {
 39             if (r1 != 0)
 40                 return 0;
 41             a[i] = 3;
 42         } 
 43     }
        /*判斷結果是否一致*/
 44     if (a[0!= 3)
 45         w = a[0];
 46     else if (a[1!= 3)
 47         w = a[1];
 48     else if (a[2!= 3)
 49         w = a[2];
 50     for (i = 0; i < 3++i)
 51     {
 52         if (a[i] != 3 && a[i] != w)
 53         {
 54                 return 0;
 55         }
 56     }
 57     return 1;
 58 }
 59 int main(void)
 60 {
 61     int n;
 62     int i;
 63     char *p;
 64     char ch;
 65     int r;
 66     scanf("%d%*c"&n);    
 67     while (n--)
 68     {
 69         memset(a, 0sizeof(a));
 70         for (i = 0; i < 3++i)
 71         {
 72             scanf("%s%s%s", left[i], right[i], result[i]);
 73             if (strcmp (result[i], "even"== 0)
 74             {
 75                 p = left[i];
 76                 while (*!= '\0')
 77                 {
 78                     a[*p-'A'= 1;
 79                     ++p;
 80                 }
 81                 p = right[i];
 82                 while (*!= '\0')
 83                 {
 84                     a[*p-'A'= 1;
 85                     ++p;
 86                 }
 87             }
 88         }
 89         for (ch = 'A'; ch <= 'L'++ch)
 90         {
 91             if (a[ch-'A']  == 1)
 92                 continue;
 93             r = judge(ch);
 94             if (r == 1)
 95             {
 96                 if (w > 0)
 97                 {
 98                     printf("%c is the counterfeit coin and it is heavy.\n", ch);
 99                 }
100                 else
101                 {
102                     printf("%c is the counterfeit coin and it is light.\n", ch);
103                 }
104                 break;
105             }
106         }
107     }
108     return 0;
109 }

posts - 12, comments - 1, trackbacks - 0, articles - 1

Copyright © 李東亮

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            国产午夜亚洲精品不卡| 国产乱码精品一区二区三区av| 伊人春色精品| 欧美激情在线播放| 欧美偷拍另类| 欧美一区二区三区在线看| 久久国产精品一区二区| 亚洲黄色av| 中日韩男男gay无套| 国产午夜亚洲精品理论片色戒| 嫩草影视亚洲| 欧美性天天影院| 久久综合色播五月| 欧美高清免费| 久久精品官网| 欧美日韩网站| 久久亚洲精品一区二区| 欧美日韩和欧美的一区二区| 欧美一区不卡| 欧美精品一区二区三区在线播放 | 欧美日韩1080p| 欧美在线三级| 欧美日韩福利在线观看| 久久国产精品久久久| 欧美成人精品一区二区| 欧美在线播放一区| 欧美精品久久一区二区| 久久乐国产精品| 国产精品二区影院| 亚洲国产一区二区三区高清| 国产欧美激情| 日韩一区二区精品| 亚洲欧洲偷拍精品| 欧美在线观看你懂的| 亚洲综合首页| 欧美日韩第一页| 欧美高清免费| 国产亚洲精品v| 亚洲视频一区在线观看| 日韩写真视频在线观看| 狂野欧美激情性xxxx| 久久精品国产99| 国产精自产拍久久久久久| 亚洲人成人99网站| 91久久精品网| 另类亚洲自拍| 老司机午夜精品视频在线观看| 国产精品区免费视频| 一区二区高清在线观看| 夜夜嗨av一区二区三区网页| 欧美成人免费全部| 欧美激情第三页| 亚洲丰满在线| 蜜乳av另类精品一区二区| 美女网站在线免费欧美精品| 国外成人在线视频网站| 欧美一区二区三区四区在线| 久久精品国产99| 国产综合欧美| 久久久午夜视频| 欧美粗暴jizz性欧美20| 亚洲高清不卡| 欧美大片在线观看| 日韩视频在线一区二区| 亚洲视频在线观看网站| 欧美三级电影一区| 亚洲日本久久| 蜜桃av一区二区在线观看| 午夜精品亚洲| 国产毛片精品视频| 亚洲欧美成aⅴ人在线观看| 香蕉av福利精品导航| 国产日韩欧美综合一区| 亚欧美中日韩视频| 麻豆国产精品777777在线 | 性感少妇一区| 免费亚洲电影在线观看| 91久久久久久久久久久久久| 欧美精品在线观看| 亚洲午夜精品久久久久久app| 欧美伊人久久久久久午夜久久久久| 国产欧美日韩精品一区| 久久精选视频| 亚洲精品久久久久久久久| 午夜性色一区二区三区免费视频| 国产日韩精品在线观看| 久久综合给合久久狠狠狠97色69| 亚洲精品国产精品国自产观看| 亚洲一区国产一区| 一区在线免费| 欧美日韩一二三四五区| 欧美一级在线播放| 亚洲国产天堂网精品网站| 亚洲欧美日韩国产另类专区| 伊人久久大香线| 欧美色网一区二区| 久久精品国产久精国产一老狼| 亚洲激情综合| 久久综合电影一区| 亚洲一区欧美| 亚洲经典自拍| 国产在线不卡精品| 欧美午夜精品久久久久久久| 久久精选视频| 亚洲摸下面视频| 91久久精品日日躁夜夜躁国产| 欧美在线视频观看| 亚洲视频网站在线观看| 亚洲国产成人在线播放| 国产欧美日韩激情| 欧美日韩日日夜夜| 猫咪成人在线观看| 欧美一区二区在线播放| 一区二区高清视频在线观看| 亚洲高清视频在线| 免费试看一区| 久久久噜噜噜久噜久久| 午夜精品免费| 亚洲一区二区三区精品动漫| 亚洲精品一区在线观看| 伊人色综合久久天天五月婷| 国产欧美日韩视频| 国产精品久久久一本精品| 欧美精品一区二区视频| 欧美aⅴ一区二区三区视频| 久久黄色网页| 久久精品一区二区三区中文字幕| 亚洲欧美国产77777| 亚洲婷婷综合色高清在线| 日韩性生活视频| 亚洲欧洲另类国产综合| 亚洲精华国产欧美| 亚洲欧洲精品一区二区精品久久久 | 韩国三级电影一区二区| 国产午夜精品一区理论片飘花| 国产精品私房写真福利视频 | 狼人社综合社区| 蜜桃av久久久亚洲精品| 久久综合中文字幕| 久久综合伊人77777尤物| 久久综合电影| 欧美国产精品劲爆| 欧美另类在线观看| 欧美日韩国产欧| 欧美视频日韩视频在线观看| 欧美视频一区二区三区四区| 国产精品久久久久免费a∨| 国产精品乱人伦一区二区| 国产精品试看| 国产综合欧美| 亚洲黄色有码视频| 一本不卡影院| 欧美在线不卡| 欧美国产日韩免费| 亚洲日韩视频| 午夜国产精品影院在线观看| 欧美在现视频| 免费观看在线综合| 欧美午夜女人视频在线| 国产区二精品视| 1769国内精品视频在线播放| 亚洲精品综合| 午夜精品视频一区| 麻豆国产精品va在线观看不卡| 亚洲国产成人在线播放| 一区二区成人精品 | 欧美理论片在线观看| 国产精品嫩草99a| 在线国产精品一区| 在线亚洲伦理| 老司机精品视频一区二区三区| 亚洲经典在线看| 欧美一区二区三区在线观看| 久久一本综合频道| 国产精品久久夜| 在线免费不卡视频| 午夜精品福利在线| 欧美黄网免费在线观看| 亚洲一区二区黄| 欧美电影在线观看完整版| 国产伦精品一区二区三区照片91 | 亚洲日本一区二区| 久久黄色网页| 国产精品视频精品视频| 亚洲激情av| 久久九九国产精品| 亚洲最新在线视频| 美女精品一区| 国内一区二区在线视频观看| 亚洲午夜高清视频| 亚洲国产91色在线| 久久久国产一区二区三区| 国产精品免费久久久久久| 99国产精品私拍| 农村妇女精品| 久久精品一区| 国产在线乱码一区二区三区| 亚洲主播在线播放| 亚洲精品一区二区在线| 免费久久久一本精品久久区|