poj--3678--Katu Puzzle(2-sat 建模)
Time Limit: 1000MS | Memory Limit: 65536KB | 64bit IO Format: %I64d & %I64u |
Description
Katu Puzzle is presented as a directed graph G(V, E) with each edge
e(a, b) labeled by a boolean operator op (one of AND, OR, XOR) and an integer
c (0 ≤ c ≤ 1). One Katu is solvable if one can find each vertex
Vi a value Xi (0 ≤ Xi ≤ 1) such that for each edge
e(a, b) labeled by op and c, the following formula holds:
XaopXb = c
The calculating rules are:
|
|
|
Given a Katu Puzzle, your task is to determine whether it is solvable.
Input
The first line contains two integers N (1 ≤ N ≤ 1000) and
M,(0 ≤ M ≤ 1,000,000) indicating the number of vertices and edges.
The following M lines contain three integers a (0 ≤ a <
N), b(0 ≤ b < N), c and an operator
op each, describing the edges.
Output
Output a line containing "YES" or "NO".
Sample Input
- 4 4
- 0 1 1 AND
- 1 2 1 OR
- 3 2 0 AND
- 3 0 0 XOR
Sample Output
- YES
Hint
X2 = 0, X3 = 1.
- #include<stdio.h>
- #include<string.h>
- #include<queue>
- #include<stack>
- #include<vector>
- #include<algorithm>
- using namespace std;
- #define MAX 1000000+10
- int low[MAX],dfn[MAX];
- int sccno[MAX],m,n;
- int scc_cnt,dfs_clock;
- bool Instack[MAX];
- vector<int>G[MAX];
- stack<int>s;
- void init()
- {
- for(int i=0;i<2*n;i++)
- G[i].clear();
- }
- void getmap()
- {
- while(m--)
- {
- int a,b,c;
- char op[5];
- memset(op,'\0',sizeof(op));
- scanf("%d%d%d%s",&a,&b,&c,op);
- if(op[0]=='A')
- {
- if(c==1)
- {
- G[a+n].push_back(a);
- G[b+n].push_back(b);
- }
- else
- {
- G[a].push_back(b+n);
- G[b].push_back(a+n);
- }
- }
- else if(op[0]=='O')
- {
- if(c==1)
- {
- G[a+n].push_back(b);
- G[b+n].push_back(a);
- }
- else
- {
- G[a].push_back(a+n);
- G[b].push_back(b+n);
- }
- }
- else if(op[0]=='X')
- {
- if(c==1)
- {
- G[a+n].push_back(b);
- G[b+n].push_back(a);
- G[a].push_back(b+n);
- G[b].push_back(a+n);
- }
- else
- {
- G[a].push_back(b);
- G[b].push_back(a);
- G[a+n].push_back(b+n);
- G[b+n].push_back(a+n);
- }
- }
- }
- }
- void tarjan(int u,int fa)
- {
- int v;
- low[u]=dfn[u]=++dfs_clock;
- Instack[u]=true;
- s.push(u);
- for(int i=0;i<G[u].size();i++)
- {
- v=G[u][i];
- if(!dfn[v])
- {
- tarjan(v,u);
- low[u]=min(low[v],low[u]);
- }
- else if(Instack[v])
- low[u]=min(low[u],dfn[v]);
- }
- if(low[u]==dfn[u])
- {
- ++scc_cnt;
- for(;;)
- {
- v=s.top();
- s.pop();
- Instack[v]=false;
- sccno[v]=scc_cnt;
- if(v==u) break;
- }
- }
- }
- void find(int l,int r)
- {
- memset(low,0,sizeof(low));
- memset(dfn,0,sizeof(dfn));
- memset(sccno,0,sizeof(sccno));
- memset(Instack,false,sizeof(Instack));
- scc_cnt=dfs_clock=0;
- for(int i=l;i<=r;i++)
- if(!dfn[i]) tarjan(i,-1);
- }
- void solve()
- {
- for(int i=0;i<n;i++)
- {
- if(sccno[i]==sccno[i+n])
- {
- printf("NO\n");
- return ;
- }
- }
- printf("YES\n");
- }
- int main()
- {
- while(scanf("%d%d",&n,&m)!=EOF)
- {
- init();
- getmap();
- find(0,2*n-1);
- solve();
- }
- return 0;
- }
poj--3678--Katu Puzzle(2-sat 建模)的更多相关文章
- poj 3678 Katu Puzzle(Two Sat)
题目链接:http://poj.org/problem?id=3678 代码: #include<cstdio> #include<cstring> #include<i ...
- POJ 3678 Katu Puzzle(2 - SAT) - from lanshui_Yang
Description Katu Puzzle is presented as a directed graph G(V, E) with each edge e(a, b) labeled by a ...
- POJ 3678 Katu Puzzle(2-SAT,合取范式大集合)
Katu Puzzle Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 9987 Accepted: 3741 Descr ...
- poj 3678 Katu Puzzle(2-sat)
Description Katu Puzzle ≤ c ≤ ). One Katu ≤ Xi ≤ ) such that for each edge e(a, b) labeled by op and ...
- POJ 3678 Katu Puzzle (经典2-Sat)
Katu Puzzle Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 6553 Accepted: 2401 Descr ...
- POJ 3678 Katu Puzzle (2-SAT)
Katu Puzzle Time Limit: 1000MS ...
- poj 3678 Katu Puzzle 2-SAT 建图入门
Description Katu Puzzle is presented as a directed graph G(V, E) with each edge e(a, b) labeled by a ...
- POJ 3678 Katu Puzzle 2-SAT 强连通分量 tarjan
http://poj.org/problem?id=3678 给m条连接两个点的边,每条边有一个权值0或1,有一个运算方式and.or或xor,要求和这条边相连的两个点经过边上的运算后的结果是边的权值 ...
- POJ 3678 Katu Puzzle
Description 给出一个关系,包括 And,Xor,Or 问是否存在解. Sol 经典的2-SAT问题. 把每个值看成两个点,一个点代表选 \(0\) ,另一个代表选 \(1\) . 首先来看 ...
- POJ 3678 Katu Puzzle(强连通 法)
题目链接 题意:给出a, b, c 和操作类型 (与或异或),问是否满足所有的式子 主要是建图: 对于 and , c == 1: 说明 a 和 b都是1,那么 0 就不能取, a' -> a ...
随机推荐
- Hadoop MapReduce编程 API入门系列之自定义多种输入格式数据类型和排序多种输出格式(十一)
推荐 MapReduce分析明星微博数据 http://git.oschina.net/ljc520313/codeexample/tree/master/bigdata/hadoop/mapredu ...
- 问题集锦 ~ CSS
#button标签点击后出现点边框 input {outline: none;} button::-moz-focus-inner {border: none;}
- python 编码问题解决方案
1.UnicodeDecodeError: 'ascii' codec can't decode byte 0xe4 in position 0: ordinal not in range(128) ...
- js 关于时间
var myDate = new Date(); myDate.getYear(); //获取当前年份(2位) myDate.getFullYear(); //获取完整的年份(4位,1970-???? ...
- auto_ftp_sh
#!/usr/bin/env python # -*- coding:utf-8 -*- import paramiko import time mydate = time.strftime( ...
- 应用七:Vue之适配test环境变量(2.0版)
在我们使用vue-cli创建的项目中,默认只有开发development和生产production两种环境变量:但在实际的项目开发过程中往往都会有测试环境,下面就来说一下如何适配测试环境test的环境 ...
- Java中类的定义
成员变量:对应事物的属性 成员方法:对应事物的行为 类定义的格式 定义类:就是定义类的成员,包括成员变量和成员方法 成员变量:和以前定义变量几乎是一样的.只不过位置发生了改变.在类中,方法外. 成员方 ...
- 如何添加删除子网卡eth0:1(linux案例)
这种方法实现了单网卡多IP,我的系统是centos7的,如何添加删除子网卡IP详细请看下面操作例子 添加子网卡IP:ifconfig ens3:1 192.168.0.100/24 ...
- IOS - 零碎
---恢复内容开始--- 1.模拟器目录: ProjectNameApk.documents.library(cache.preference.cookies).temp 2.Edit-Refacto ...
- 自动化测试之firebug、firepath、IDE的使用
1firebug安装-firefox添加组件-firebug 如图 firepath依赖于firebug 展示路径用,安装和firebug一样