A10046 | CNF 2
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
'In Boolean logic, a formula is in conjunctive normal form (CNF) or clausal normal form if it is a conjunction of clauses, where a clause is a disjunction of literals' (cited from https://en.wikipedia.org/wiki/Conjunctive\_normal\_form)
In the other words, CNF is a formula of type , where $&$ represents a logical "AND" (conjunction),  represents a logical "OR" (disjunction), and $v_{ij}$ are some boolean variables or their negations. Each statement in brackets is called a clause, and $v_{ij}$ are called literals.
You are given a CNF containing variables $x_{1},...,x_{m}$ and their negations. We know that each variable occurs in at most two clauses (with negation and without negation in total). Your task is to determine whether this CNF is satisfiable, that is, whether there are such values of variables where the CNF value is true. If CNF is satisfiable, then you also need to determine the values of the variables at which the CNF is true.
It is guaranteed that each variable occurs at most once in each clause.
In the other words, CNF is a formula of type , where $&$ represents a logical "AND" (conjunction),  represents a logical "OR" (disjunction), and $v_{ij}$ are some boolean variables or their negations. Each statement in brackets is called a clause, and $v_{ij}$ are called literals.
You are given a CNF containing variables $x_{1},...,x_{m}$ and their negations. We know that each variable occurs in at most two clauses (with negation and without negation in total). Your task is to determine whether this CNF is satisfiable, that is, whether there are such values of variables where the CNF value is true. If CNF is satisfiable, then you also need to determine the values of the variables at which the CNF is true.
It is guaranteed that each variable occurs at most once in each clause.
输入格式
The first line contains integers $n$ and $m$ ( $1<=n,m<=2·10^{5}$ ) — the number of clauses and the number variables, correspondingly.
Next $n$ lines contain the descriptions of each clause. The $i$ -th line first contains first number $k_{i}$ ( $k_{i}>=1$ ) — the number of literals in the $i$ -th clauses. Then follow space-separated literals $v_{ij}$ ( $1<=|v_{ij}|<=m$ ). A literal that corresponds to $v_{ij}$ is $x_{|vij}|$ either with negation, if $v_{ij}$ is negative, or without negation otherwise.
Next $n$ lines contain the descriptions of each clause. The $i$ -th line first contains first number $k_{i}$ ( $k_{i}>=1$ ) — the number of literals in the $i$ -th clauses. Then follow space-separated literals $v_{ij}$ ( $1<=|v_{ij}|<=m$ ). A literal that corresponds to $v_{ij}$ is $x_{|vij}|$ either with negation, if $v_{ij}$ is negative, or without negation otherwise.
输出格式
If CNF is not satisfiable, print a single line "NO" (without the quotes), otherwise print two strings: string "YES" (without the quotes), and then a string of $m$ numbers zero or one — the values of variables in satisfying assignment in the order from $x_{1}$ to $x_{m}$ .
输入输出样例
输入 #1
2 2 2 1 -2 2 2 -1
输出 #1
YES 11
输入 #2
4 3 1 1 1 2 3 -1 -2 3 1 -3
输出 #2
NO
输入 #3
5 6 2 1 2 3 1 -2 3 4 -3 5 4 6 2 -6 -4 1 5
输出 #3
YES 100010
In the first sample test formula is . One of possible answer is $x_{1}=TRUE,x_{2}=TRUE$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted