博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj3295——Tautology(构造法)
阅读量:2344 次
发布时间:2019-05-10

本文共 2851 字,大约阅读时间需要 9 分钟。

Description

WFF ‘N PROOF is a logic game played with dice. Each die has six faces representing some subset of the possible symbols K, A, N, C, E, p, q, r, s, t. A Well-formed formula (WFF) is any string of these symbols obeying the following rules:

p, q, r, s, and t are WFFs

if w is a WFF, Nw is a WFF
if w and x are WFFs, Kwx, Awx, Cwx, and Ewx are WFFs.
The meaning of a WFF is defined as follows:
p, q, r, s, and t are logical variables that may take on the value 0 (false) or 1 (true).
K, A, N, C, E mean and, or, not, implies, and equals as defined in the truth table below.
Definitions of K, A, N, C, and E
w x Kwx Awx Nw Cwx Ewx
1 1 1 1 0 1 1
1 0 0 1 0 0 0
0 1 0 1 1 1 0
0 0 0 0 1 1 1
A tautology is a WFF that has value 1 (true) regardless of the values of its variables. For example, ApNp is a tautology because it is true regardless of the value of p. On the other hand, ApNq is not, because it has the value 0 for p=0, q=1.

You must determine whether or not a WFF is a tautology.

Input

Input consists of several test cases. Each test case is a single line containing a WFF with no more than 100 symbols. A line containing 0 follows the last case.

Output

For each test case, output a line containing tautology or not as appropriate.

Sample Input

ApNp

ApNq
0
Sample Output

tautology

not

输入由p、q、r、s、t、K、A、N、C、E共10个字母组成的逻辑表达式,

其中p、q、r、s、t的值为1(true)或0(false),即逻辑变量;
K、A、N、C、E为逻辑运算符,
K –> and: x && y
A –> or: x || y
N –> not : !x
C –> implies : (!x)||y
E –> equals : x==y
问这个逻辑表达式是否为永真式。
转变成后缀表达式,再按照上面的规则运算看最后的结果就行,5个变量都遍历一次也没多久。

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3f3f3f3f#define MAXN 100010#define Mod 10001using namespace std;int p,q,r,s,t;stack
sta;char op[200];void fun(){ int len=strlen(op); for(int i=len-1;i>=0;--i) { if(op[i]=='p') sta.push(p); else if(op[i]=='q') sta.push(q); else if(op[i]=='r') sta.push(r); else if(op[i]=='s') sta.push(s); else if(op[i]=='t') sta.push(t); else if(op[i]=='K') { int t1=sta.top(); sta.pop(); int t2=sta.top(); sta.pop(); int te=t1&&t2; sta.push(te); } else if(op[i]=='A') { int t1=sta.top(); sta.pop(); int t2=sta.top(); sta.pop(); int te=t1||t2; sta.push(te); } else if(op[i]=='N') { int t1=sta.top(); sta.pop(); int te=!t1; sta.push(te); } else if(op[i]=='C') { int t1=sta.top(); sta.pop(); int t2=sta.top(); sta.pop(); int te=(!t1)||t2; sta.push(te); } else if(op[i]=='E') { int t1=sta.top(); sta.pop(); int t2=sta.top(); sta.pop(); if(t1==t2) sta.push(1); else sta.push(0); } }}bool check(){ for(p=0;p<2;++p) for(q=0;q<2;++q) for(r=0;r<2;++r) for(s=0;s<2;++s) for(t=0;t<2;++t) { fun(); if(sta.top()==0) return false; } return true;}int main(){ while(gets(op)) { if(op[0]=='0') break; if(check()) printf("tautology\n"); else printf("not\n"); } return 0;}

转载地址:http://etcvb.baihongyu.com/

你可能感兴趣的文章
如何将Java String转换为byte []?
查看>>
ng-if和ng-show / ng-hide有什么区别
查看>>
用Java复制文件的标准简洁方法?
查看>>
删除可能不存在的文件的大多数pythonic方式
查看>>
如何在Eclipse中为Java文本编辑器更改字体大小?
查看>>
我们应该@Override接口的方法实现吗?
查看>>
ng-repeat定义次数而不是重复数组?
查看>>
选择语句以查找某些字段的重复项
查看>>
JavaScript ES6类中的私有属性
查看>>
java项目之——坦克大战09
查看>>
java项目之——坦克大战10
查看>>
java项目之——坦克大战11
查看>>
用sed批量替换文件中的字符
查看>>
顶级域名注册分布统计:2006年09月 .com .de .net .uk .cn
查看>>
雅虎通可以批量添加MSN用户了
查看>>
速度比较:GMail/MSN/Yahoo!Mail
查看>>
搜索引擎来路关键词的挖掘:百度统计的高级分析报告导出获取来源关键词
查看>>
C/C++题目--拷贝构造函数概念
查看>>
C/C++题目--深复制与浅复制
查看>>
数据结构教程--李春葆版(总结)之线性表-顺序存储结构练习题
查看>>