Uva592 Island of Logic
题意:神人鬼三个种族,神只说真话,鬼只说假话,人白天说真话,晚上说假话。根据对话内容区分种族和白天黑夜。 最多有A, B, C, D, E五个人
算法:枚举A, B, C, D, E的种族情况和白天黑夜的情况。每个人有可能是神人鬼,所以用两个bit表示,白天黑夜用1个bit表示。一共需要11 bits.
#include<iostream>
#include<cstdio>
#include<string>
using namespace std; struct statement
{
char a;//speaker
char b;//object 等于状态的偏移量
bool c;//not
char d;
} p[50]; /*
A: I am [not] ( divine | human | evil | lying ).
A: X is [not] ( divine | human | evil | lying ).
A: It is ( day | night ).
*/
void get(statement &t)
{
char c;
cin >> c;
t.a = c - 'A';
cin >> c >> c;
if (c == 'I')
{
cin.get(c);
if (c == 't')//It is
t.b = 5;//day|night偏移5
else//I am
t.b = t.a;
}
else
t.b = c - 'A';//0-4对应 A-E 5对应day|night string s;
cin >> s >> s;
if (s == "not") t.c = true, cin >> s; else t.c = false;
switch (s[0])
{
case 'd': t.d = 0; break;//day divine
case 'e': t.d = 2; break;//evil
case 'l': t.d = 3; break;//lying
default: t.d = 1;//human night
}
} //human + night = 2
//evil + (day|night) >= 2
bool lying(short state, char who)
{
return (state >> who*2 & 3) + (state >> 10 & 1) >= 2;
} //this is too hard to understand
bool check(statement st, short s)
{
return (st.d == 3 ? lying(s, st.b) : st.d == (s >> st.b + st.b & 3)) ^ st.c ^ lying(s, st.a);
} //A-E 每个占2位; day,night 占1位
const int MAX_STATE=1<<11;
bool is_valid_state(int s)
{
for(int i=0;i<5;i++)
if((s>>i*2 & 3)==3)
return false;
return true;
} //this is better then check function
//判断说话的人是否说谎话
//判断话的内容是否是真的
bool judge(statement st, short s)
{
//if speaker is lying
bool speaker=lying(s, st.a); //if statement is true
bool object; //It is ( day | night ).
if(st.b==5)
{
object = (s >> 10 & 1)==st.d;
return speaker!=object;
} //lying
if(st.d==3)
{
if(st.c)
object = !lying(s, st.b);
else
object = lying(s, st.b); return speaker!=object;
} // X is [not] ( divine | human | evil )
object = (s >> st.b*2 & 3)==st.d; return speaker!=object;
} //如果状态矛盾,则置为 11b
void combine(short &a, short b)
{
for (int i = 0; i < 6; ++i)
if (a & (3 << i + i) ^ b & (3 << i + i))
a |= (3 << i + i);
} const char *s[] = { "divine", "human", "evil" }; int main()
{
#ifndef ONLINE_JUDGE
freopen("./uva592.in", "r", stdin);
#endif
int Kase=0;
int n;
//printf("%0X\n", MAX_STATE);
while(cin>>n && n)
{
cout << "Conversation #" << ++Kase << endl;
short a = -1;
for(int i=0; i<n; i++) get(p[i]);
for(int i=0; i<MAX_STATE; i++) if(is_valid_state(i))
{
bool b=true;
for (int j=0; j<n; ++j) if (!check(p[j], i))
{
b = false;
break;
}
if (!b) continue;
if (a == -1) a = i; else combine(a, i);
}
if (a == -1) cout << "This is impossible." << endl;
if (a == 0xFFF) cout << "No facts are deducible." << endl;
for (int i = 0; i < 5; ++i)
{
int x = a>>i*2 & 3;
if (x != 3) cout << char(i + 'A') << " is " << s[x] << "." << endl;
}
int x = a>>10 & 3;
if (x != 3) cout << "It is " << (x ? "night." : "day.") << endl;
cout << endl;
} return 0;
}
Uva592 Island of Logic的更多相关文章
- uva 592 Island of Logic (收索)
Island of Logic The Island of Logic has three kinds of inhabitants: divine beings that always tel ...
- UVA题目分类
题目 Volume 0. Getting Started 开始10055 - Hashmat the Brave Warrior 10071 - Back to High School Physics ...
- POJ题目细究
acm之pku题目分类 对ACM有兴趣的同学们可以看看 DP: 1011 NTA 简单题 1013 Great Equipment 简单题 102 ...
- [LeetCode] Island Perimeter 岛屿周长
You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represen ...
- QuartusII Design partion and logic lock
Design partion Design partion常用于“增益变量(QIC)”,通过Design Partition对子模块进行“逻辑分区”,在Design Partition Window中 ...
- 463. Island Perimeter
https://leetcode.com/problems/island-perimeter/ 在一个N×N的矩阵中,N<100,1代表岛,0代表海,岛内没有海,求岛的周长 [[0,1,0,0] ...
- Leetcode-463 Island Perimeter
#463. Island Perimeter You are given a map in form of a two-dimensional integer grid where 1 represe ...
- 使用struts的logic:iterate标签遍历列表时得到显示序号
<logic:notEmpty name="sList" scope="request"> <logic:iterate id="e ...
- LeetCode Island Perimeter
原题链接在这里:https://leetcode.com/problems/island-perimeter/ 题目: You are given a map in form of a two-dim ...
随机推荐
- 组合 z
输入a b c d e以及它们对应的数字 比如 a-->1 2 3 b-->2 3 c-->1 d-->3 4 5 e-->1 3 5 输出a b c d e的可用组合 ...
- Windows Server 2012 R2 设置 smtp 服务器
Windows Server 2012/2012 R2:安装和配置 SMTP 服务器 安装 SMTP 服务器 以下是安装 SMTP 服务器功能的步骤: 打开“服务器管理器”:单击键盘上的 Window ...
- Aptana 插件 for Eclipse 4.4
http://download.aptana.com/studio3/plugin/install Aptana Update Site This site is designed to be use ...
- windows下ncl生成tiff图(案例)
一:安装软件和准备数据 1.需要安装Vapor(注意安装路径不要存在空格) 注:版本2.4.2及以后 2.安装NCL,方法见http://www.cnblogs.com/striver-zhu/p/4 ...
- 2015-11-02-js
1.对象 创建方式有两种,一时通过new 后加object构造函数,二是用字面量法, var box=new object(); var box={ name='bokeyuan'; }; 访问对象: ...
- windows下跑python flask,环境配置
首先声明一下,我安装的是python 2.7. 第一步:下载easy_setup.py 下载地址:https://pypi.python.org/pypi/setuptools 这个下载地址真心难找, ...
- wpf4 文字 模糊 不清晰 解决方法
在窗口或控件上设置字体属性就可以了,如下:<UserControl x:Class="..." xmlns="http://schemas. ...
- 【原创译文】基于Docker和Rancher的超融合容器云架构
基于Docker和Rancher的超融合容器云架构 ---来自Rancher和Redapt 超融合架构在现代数据中心是一项巨大的变革.Nutanix公司发明了超融合架构理论,自从我听说他们的“iPho ...
- 在IIS 中如何配置URL Rewrite,并且利用出站规则保持被重写的Cookie的域
Url Rewrite配置 xx.aa.com/bb/test1.aspx 会重写到 bb.aa.com/test1.aspx 具体怎么配置入站 出站规则 结果:
- 深入.Net字符串类型
.Net的字符串其实还是有很多东西可以写的.但是最近在学习SQL Server,只好先做下最近学习到的一些巧用,妙用之类的东西. 巧用String.Join拼接字串数组,字符串集合为字符串.如果在之前 ...