码迷,mamicode.com
首页 > 其他好文 > 详细

九度[1150]Counterfeit Dollar

时间:2016-02-21 00:13:08      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

# include<iostream>
# include<string>
# include<cstdio>
using namespace std;
struct node{
	string a;
	string b;
}s[3];
int main()
{
	string a[3];
	int n=0;
	bool heavy;
	char c;
	//freopen("in.txt","r",stdin);
	cin>>n;
	while(n--)
	{
		for(int i=0;i<3;i++)
		{
			cin>>s[i].a>>s[i].b>>a[i];
		}
		bool isFind=false;
		for(int i=0;i<12;i++)
		{
			c=‘A‘+i;
			heavy=true;
			for(int j=0;j<3;j++)
			{
				if((s[j].a.find(c)!=-1) || s[j].b.find(c)!=-1) //在里面 
				{
					if(a[j]=="even")
					{
						isFind=false;
						break;
					}
					if(a[j]=="up")
					{
						if(s[j].a.find(c)>=0)
						{
							isFind=true;
							heavy=true;
							continue;
						}
						else
						{
							isFind=true;
							heavy=false;
							continue;
						}
					}
					else
					{
						if(s[j].a.find(c)>=0)
						{
							isFind=true;
							heavy=false;
							continue;
						}
						else
						{
							isFind=true;
							heavy=true;
							continue;
						}
					}
				}
				else if((s[j].a.find(c)==-1) || s[j].b.find(c)==-1) //不在里面
				{
					if(a[j]!="even")
					{
						isFind=false;
						break;
					}
				}
			}
			if(isFind ) break;
		}
		cout<<c<<" is the counterfeit coin and it is ";
		if(heavy)
			cout<<"heavy."<<endl;
		else 
			cout<<"light."<<endl;
	}
	//system("pause");
	return 0;
}

  要注意的地方就是s[i].a.find(c)>=0  是不对的 可以先赋值再比较 也可以改成!=-1  切记切记 或者用string::npos

九度[1150]Counterfeit Dollar

标签:

原文地址:http://www.cnblogs.com/dreamer123/p/5204174.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!