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

Counterfeit Dollar

該題ZOJ題號(hào)為1184, POJ題號(hào)為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.

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

,k沒有出現(xiàn)在天平兩邊,而且結(jié)果為even成立。通過三次稱量判斷,且結(jié)果一致,可以肯定k就是假幣,且較輕。為了說明為題,對(duì)于上例假設(shè)L是假幣。代入稱量1L不出現(xiàn),結(jié)果even成立,稱量2L不出現(xiàn),結(jié)果為up不成立,因?yàn)橹挥幸幻都賻?,現(xiàn)假設(shè)L為假幣,而在L不出現(xiàn)的情況下天平不平衡,故L不是假幣。按照上述算法進(jìn)行枚舉,遇到可以肯定是假幣的貨幣時(shí)算法終止。

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

具體代碼如下:

  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];
        /*對(duì)當(dāng)前假設(shè)的硬幣進(jìn)行判斷*/
 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     }
        /*判斷結(jié)果是否一致*/
 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 }


只有注冊(cè)用戶登錄后才能發(fā)表評(píng)論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


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>
            国内成人在线| 欧美好吊妞视频| 亚洲人人精品| 久久人人爽人人| 国产人成精品一区二区三| 午夜精品美女自拍福到在线 | 欧美精品三级| 欧美一区二区三区四区夜夜大片| 亚洲精品欧美日韩| 国产日韩综合| 亚洲国产高清在线观看视频| 欧美日韩高清一区| 久久综合999| 这里只有精品视频在线| 国产精品成人在线| 久久三级福利| 国产精品一区免费在线观看| 欧美成人高清视频| 国产亚洲精品自拍| 一区二区日韩免费看| 激情国产一区| 午夜精品久久久久久久99黑人| 尤物视频一区二区| 欧美中文字幕视频| 久久国产夜色精品鲁鲁99| 欧美连裤袜在线视频| 老鸭窝91久久精品色噜噜导演| 国产精品福利网站| 91久久精品日日躁夜夜躁国产| 国产一区 二区 三区一级| 最新国产の精品合集bt伙计| 在线成人h网| 美女国产一区| 亚洲狠狠丁香婷婷综合久久久| 在线观看日韩av先锋影音电影院| 久久精品成人欧美大片古装| 欧美一区二区在线看| 国产一区二区三区不卡在线观看| 一本色道久久综合亚洲精品高清| 亚洲精品综合| 欧美午夜一区| 久久久久久高潮国产精品视| 男女精品网站| 中文久久精品| 激情成人在线视频| 欧美精品二区| 亚洲欧美成人在线| 欧美高清在线观看| 欧美一区午夜视频在线观看| 国产专区一区| 国产精品成人观看视频国产奇米| 亚洲女同同性videoxma| 欧美成人有码| 性伦欧美刺激片在线观看| 国内伊人久久久久久网站视频| 欧美激情片在线观看| 欧美亚洲一区在线| 亚洲精品免费看| 亚洲欧美成人| 国产偷国产偷精品高清尤物| 久久久久在线| 性视频1819p久久| 99精品视频免费| 亚洲韩国青草视频| 欧美成人一区二区三区| 久久久久国产精品厨房| 亚洲欧美大片| 午夜日韩在线观看| 亚洲欧美一区二区三区在线| 一本色道久久综合亚洲二区三区| 国内精品免费在线观看| 国产精品一区二区三区四区五区 | 国产麻豆视频精品| 国产精品久久久久久av下载红粉| 欧美精品在线极品| 欧美日韩成人精品| 国产精品婷婷| 精品99视频| 999亚洲国产精| 久久av二区| 欧美成人黑人xx视频免费观看| 免费成人av在线| 日韩一级黄色片| 久久超碰97人人做人人爱| 欧美中文在线免费| 欧美日韩国产大片| 国产一区二区三区不卡在线观看| 依依成人综合视频| 亚洲视频自拍偷拍| 久久精品一区二区三区不卡| 欧美大片91| 亚洲一区二区精品在线观看| 久久精品在线播放| 国产精品久久久久久久久久ktv | 久久国产精品一区二区三区四区| 欧美中文字幕视频在线观看| 欧美激情无毛| 久久免费视频这里只有精品| 国产精品xxx在线观看www| 亚洲电影第三页| 欧美在线视频不卡| 亚洲综合日韩中文字幕v在线| 欧美人与性动交α欧美精品济南到| 欧美mv日韩mv亚洲| 国产精品久久久久久久久久久久久久| 狠狠干成人综合网| 欧美一区二区三区在线观看 | 欧美日韩中文精品| 亚洲欧洲一区二区三区在线观看| 性欧美在线看片a免费观看| 一级日韩一区在线观看| 欧美日韩直播| 欧美一级理论片| 亚洲欧美精品suv| 国产毛片一区二区| 亚洲在线免费视频| 国产精品99久久久久久人| 国产精品久久久91| 久久精品亚洲精品| 你懂的国产精品永久在线| 亚洲欧洲日本专区| 一区二区三区www| 国产午夜精品一区二区三区视频| 欧美一区在线看| 鲁鲁狠狠狠7777一区二区| 亚洲精品视频中文字幕| 一区二区日本视频| 在线观看视频一区| 夜夜爽99久久国产综合精品女不卡| 欧美午夜理伦三级在线观看| 先锋影音久久久| 你懂的视频欧美| 久久久最新网址| 国产精品久久久久秋霞鲁丝 | 久久精品视频网| 欧美日本二区| 欧美大色视频| 韩国成人福利片在线播放| 中文国产一区| 99在线精品免费视频九九视| 久久久久久伊人| 欧美在线播放| 国产日韩在线不卡| 亚洲午夜在线观看| 亚洲欧美高清| 国产精品va在线播放| 99精品欧美一区| 中文一区字幕| 欧美系列一区| 午夜电影亚洲| 欧美一区亚洲一区| 国产午夜精品理论片a级大结局 | 亚洲精品一区二区网址| 国产欧美一区二区三区在线看蜜臀| 亚洲精品麻豆| 亚洲欧美日韩成人| 国产精品综合久久久| 亚洲一区二区三区乱码aⅴ| 欧美在线视频观看| 激情国产一区二区| 欧美成人免费观看| 亚洲最黄网站| 欧美在线短视频| 亚洲国产精品免费| 国产精品第13页| 亚洲欧美日韩中文视频| 久久久夜精品| 亚洲特黄一级片| 国产综合精品| 国产精品性做久久久久久| 久久久亚洲高清| 亚洲自拍三区| 日韩一区二区福利| 亚洲国产精品小视频| 久久国产精品久久久| 一区二区三区 在线观看视频| 国产精品午夜视频| 国产精品乱码| 国产精品久久77777| 欧美片在线播放| 美女日韩欧美| 久久久久国产精品一区三寸| 一本一本大道香蕉久在线精品| 女生裸体视频一区二区三区| 亚洲综合99| 欧美一区深夜视频| 久久超碰97中文字幕| 先锋影音久久| 欧美一区二视频| 美女国产精品| 欧美高清在线播放| 亚洲精品久久7777| 亚洲精品久久久久久久久久久久久 | 欧美日韩一区二区在线观看| 欧美精品一区二区高清在线观看| 欧美二区不卡| 国产精品国产一区二区| 国产精品永久在线| 亚洲第一页在线| 一区二区三区国产在线|