Counterfeit Dollar
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 42028   Accepted: 13369

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.

题意是从A到L的dollar,其中有一个跟他们其它的不同,可能是轻了也可能是重了。给了三个在秤上的关系,要你判断出哪一个是伪造的dollar,是轻是重。

做的时候还WA了几次,但AC之后觉得这个题真是水啊。。。不知道为什么只要自己好不容易A完之后就觉得这个题真的很水,为什么当时没有想到呢?就是这种感觉。

咳咳,因为这个题就A到L之中有问题嘛,数据量太小,导致枚举就OK了。所以从A开始就一个一个试吧,如果在even中的语句里出现了,那就排除它的嫌疑。在up语句中出现了,它的flag加3,代表可能是轻的标记。在down语句中出现了,它自己的flag加4,代表可能是重的标记。

然后对12个砝码标记完之后,有标记为1的排除,标记为7 10 11这样的排除,因为不可能出现一个砝码既轻又重的情况,然后找最独特的那一个就是伪造的砝码了。输出即可。

代码:

#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <string>
#include <cstring>
#include <map>
using namespace std; int num[15];
int Test,i,j,flag[15],sum=0;
string left_s[5],right_s[5],bala[5];
char temp_c; void solve()
{
if(bala[1]=="up")
{
for(j=0;j<left_s[1].length();j++)
{
if(left_s[1][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"heavy."<<endl;
return ;
}
}
for(j=0;j<right_s[1].length();j++)
{
if(right_s[1][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"light."<<endl;
return;
}
}
}
if(bala[2]=="up")
{
for(j=0;j<left_s[2].length();j++)
{
if(left_s[2][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"heavy."<<endl;
return;
}
}
for(j=0;j<right_s[2].length();j++)
{
if(right_s[2][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"light."<<endl;
return;
}
}
}
if(bala[3]=="up")
{
for(j=0;j<left_s[3].length();j++)
{
if(left_s[3][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"heavy."<<endl;
return ;
}
}
for(j=0;j<right_s[3].length();j++)
{
if(right_s[3][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"light."<<endl;
return ;
}
}
} if(bala[1]=="down")
{
for(j=0;j<left_s[1].length();j++)
{
if(left_s[1][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"light."<<endl;
return;
}
}
for(j=0;j<right_s[1].length();j++)
{
if(right_s[1][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"heavy."<<endl;
return ;
}
}
}
if(bala[2]=="down")
{
for(j=0;j<left_s[2].length();j++)
{
if(left_s[2][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"light."<<endl;
return;
}
}
for(j=0;j<right_s[2].length();j++)
{
if(right_s[2][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"heavy."<<endl;
return ;
}
}
}
if(bala[3]=="down")
{
for(j=0;j<left_s[3].length();j++)
{
if(left_s[3][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"light."<<endl;
return;
}
}
for(j=0;j<right_s[3].length();j++)
{
if(right_s[3][j]==temp_c)
{
sum=1;
cout<<temp_c<<" is the counterfeit coin and it is ";
cout<<"heavy."<<endl;
return ;
}
}
}
} bool pend()
{
int pend_flag=0;
if(bala[1]=="up")
{
for(j=0;j<left_s[1].length();j++)
{
if(left_s[1][j]==temp_c)
{
pend_flag=1;
}
}
for(j=0;j<right_s[1].length();j++)
{
if(right_s[1][j]==temp_c)
{
pend_flag=1;
}
}
if(pend_flag==0)
return false;
}
if(bala[2]=="up")
{
for(j=0;j<left_s[2].length();j++)
{
if(left_s[2][j]==temp_c)
{
pend_flag=1;
}
}
for(j=0;j<right_s[2].length();j++)
{
if(right_s[2][j]==temp_c)
{
pend_flag=1;
}
}
if(pend_flag==0)
return false;
}
if(bala[3]=="up")
{
for(j=0;j<left_s[3].length();j++)
{
if(left_s[3][j]==temp_c)
{
pend_flag=1;
}
}
for(j=0;j<right_s[3].length();j++)
{
if(right_s[3][j]==temp_c)
{
pend_flag=1;
}
}
if(pend_flag==0)
return false;
} if(bala[1]=="down")
{
for(j=0;j<left_s[1].length();j++)
{
if(left_s[1][j]==temp_c)
{
pend_flag=1;
}
}
for(j=0;j<right_s[1].length();j++)
{
if(right_s[1][j]==temp_c)
{
pend_flag=1;
}
}
if(pend_flag==0)
return false;
}
if(bala[2]=="down")
{
for(j=0;j<left_s[2].length();j++)
{
if(left_s[2][j]==temp_c)
{
pend_flag=1;
}
}
for(j=0;j<right_s[2].length();j++)
{
if(right_s[2][j]==temp_c)
{
pend_flag=1;
}
}
if(pend_flag==0)
return false;
}
if(bala[3]=="down")
{
for(j=0;j<left_s[3].length();j++)
{
if(left_s[3][j]==temp_c)
{
pend_flag=1;
}
}
for(j=0;j<right_s[3].length();j++)
{
if(right_s[3][j]==temp_c)
{
pend_flag=1;
}
}
if(pend_flag==0)
return false;
}
return true;
}
int main()
{
cin>>Test; while(Test--)
{
memset(flag,0,sizeof(flag));
memset(num,0,sizeof(num));
sum=0; for(i=1;i<=3;i++)
{
cin>>left_s[i]>>right_s[i]>>bala[i];
}
for(temp_c='A';temp_c<='L';temp_c++)
{
if(bala[1]=="even")
{
for(j=0;j<left_s[1].length();j++)
{
if(left_s[1][j]==temp_c)
{
flag[temp_c-'A']=1;
break;
}
}
for(j=0;j<right_s[1].length();j++)
{
if(right_s[1][j]==temp_c)
{
flag[temp_c-'A']=1;
break;
}
}
}
if(bala[2]=="even")
{
for(j=0;j<left_s[2].length();j++)
{
if(left_s[2][j]==temp_c)
{
flag[temp_c-'A']=1;
break;
}
}
for(j=0;j<right_s[2].length();j++)
{
if(right_s[2][j]==temp_c)
{
flag[temp_c-'A']=1;
break;
}
}
}
if(bala[3]=="even")
{
for(j=0;j<left_s[3].length();j++)
{
if(left_s[3][j]==temp_c)
{
flag[temp_c-'A']=1;
break;
}
}
for(j=0;j<right_s[3].length();j++)
{
if(right_s[3][j]==temp_c)
{
flag[temp_c-'A']=1;
break;
}
}
} if(bala[1]=="up")
{
for(j=0;j<left_s[1].length();j++)
{
if(left_s[1][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] += 4;
}
}
for(j=0;j<right_s[1].length();j++)
{
if(right_s[1][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] += 3;
}
}
}
if(bala[2]=="up")
{
for(j=0;j<left_s[2].length();j++)
{
if(left_s[2][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] += 4;
}
}
for(j=0;j<right_s[2].length();j++)
{
if(right_s[2][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] += 3;
}
}
}
if(bala[3]=="up")
{
for(j=0;j<left_s[3].length();j++)
{
if(left_s[3][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] +=4;
}
}
for(j=0;j<right_s[3].length();j++)
{
if(right_s[3][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] +=3;
}
}
} if(bala[1]=="down")
{
for(j=0;j<left_s[1].length();j++)
{
if(left_s[1][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] +=3;
}
}
for(j=0;j<right_s[1].length();j++)
{
if(right_s[1][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] +=4;
}
}
}
if(bala[2]=="down")
{
for(j=0;j<left_s[2].length();j++)
{
if(left_s[2][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] +=3;
}
}
for(j=0;j<right_s[2].length();j++)
{
if(right_s[2][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] +=4;
}
}
}
if(bala[3]=="down")
{
for(j=0;j<left_s[3].length();j++)
{
if(left_s[3][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] +=3;
}
}
for(j=0;j<right_s[3].length();j++)
{
if(right_s[3][j]==temp_c)
{
if(flag[temp_c-'A']==1)
continue;
else
flag[temp_c-'A'] +=4;
}
}
}
}
for(temp_c='A';temp_c<='L';temp_c++)
{
num[flag[temp_c-'A']]++;
}
for(i=0;i<=12;i++)
{
if(num[i]==1 && i!=7 && i!=10 && i!=11)
{
for(temp_c='A';temp_c<='L';temp_c++)
{
if(flag[temp_c-'A']==i)
{
if(pend())
{
solve();
}
}
}
}
}
} return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

POJ 1013:Counterfeit Dollar的更多相关文章

  1. 九度OJ 1150:Counterfeit Dollar(假美元) (分析、检验)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:485 解决:215 题目描述: Sally Jones has a dozen Voyageur silver dollars. Howev ...

  2. Poj 1013 Counterfeit Dollar / OpenJudge 1013(2692) 假币问题

    1.链接地址: http://poj.org/problem?id=1013 http://bailian.openjudge.cn/practice/2692 http://bailian.open ...

  3. POJ 1013 Counterfeit Dollar

    Counterfeit Dollar Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 36206   Accepted: 11 ...

  4. Counterfeit Dollar 分类: POJ 2015-06-12 15:28 19人阅读 评论(0) 收藏

    Counterfeit Dollar Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 41559   Accepted: 13 ...

  5. POJ1013 Counterfeit Dollar

    题目来源:http://poj.org/problem?id=1013 题目大意:有12枚硬币,其中有一枚假币.所有钱币的外表都一样,所有真币的重量都一样,假币的重量与真币不同,但我们不知道假币的重量 ...

  6. POJ 1013 小水题 暴力模拟

    Counterfeit Dollar Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 35774   Accepted: 11 ...

  7. Counterfeit Dollar -----判断12枚钱币中的一个假币

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

  8. poj1013.Counterfeit Dollar(枚举)

    Counterfeit Dollar Time Limit: 1 Sec  Memory Limit: 64 MB Submit: 415  Solved: 237 Description Sally ...

  9. POJ 3321:Apple Tree + HDU 3887:Counting Offspring(DFS序+树状数组)

    http://poj.org/problem?id=3321 http://acm.hdu.edu.cn/showproblem.php?pid=3887 POJ 3321: 题意:给出一棵根节点为1 ...

随机推荐

  1. 【HITB GSEC CTF 2017】1000levels

    https://files.cnblogs.com/files/p4nda/498a3f10-8976-4733-8bdb-30d6f9d9fdad.gz #通过阅读天枢战队大佬们的wp调试的结果 首 ...

  2. loadBeanDefinitions方法源码跟踪(二)

    因为字数超过了限制,所以分成了三篇,承接上篇: https://www.jianshu.com/p/a0cfaedf3fc5 代码过宽,可以shift + 鼠标滚轮 左右滑动查看 3.parseDef ...

  3. 百度小程序-接入自然搜索-API提交Url-c#开发

    开发百度小程序后,接下来,人们最想做的是让百度更多的录入自家内容.因为小程序资源被索引后,才可能在搜索结果中展现. 百度也提供了小程序的自然搜索提交入口.一共有两种方式: 第一种是用已有的H5网站资源 ...

  4. ​IntelliJ IDEA使用技巧—使用EasyCode插件一键生成代码04期

    在现如今的软件开发过程中,软件开发人员将很多的精力放在重复的编码中.特别是流行的MVC架构模式下,项目各个层次的功能更加独立,这也间接的造成了代码的相似度更高.因此需要寻找一种可以减少软件开发人员重复 ...

  5. python假设一段楼梯共 n(n>1)个台阶,小朋友一步最多能上 3 个台阶,那么小朋友上这段楼 梯一共有多少种方法

    我们先把前四节种数算出来(自己想是哪几类,如果你不会算,那就放弃写代码吧,干一些在街上卖肉夹馍的小生意,也挣得不少) 标号 1    2    3     4 种类 1    2    4     7 ...

  6. SSM 整合配置以及一个简单登陆案例(个人记录)

    SSM 文件以及大部分参考博客 https://blog.csdn.net/qq598535550/article/details/51703190 简答的登陆注册案例下载链接在末尾补贴图了 我建立的 ...

  7. 吴裕雄 Bootstrap 前端框架开发——Bootstrap 字体图标(Glyphicons):glyphicon glyphicon-road

    <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name ...

  8. DStream-04 Window函数的原理和源码

    DStream 中 window 函数有两种,一种是普通 WindowedDStream,另外一种是针对 window聚合 优化的 ReducedWindowedDStream. Demo objec ...

  9. MySQL报错注入函数汇总及常用注入语句

    版权声明:本文转载自网络内容,下面附原创链接原创链接:https://blog.csdn.net/Auuuuuuuu/article/details/91415165 常用函数 字符串连接函数,将多个 ...

  10. 对状态字的理解 尤其是 首次检测位“/FC”的想法

    状态字 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0               BR CC1 CC0 OV OS OR STA RLO /FC 问题1 关于首次检测位& ...