Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Опечатка в последней строчке. если c[x] > c[!x], а не наоборот. #286

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions content/russian/cs/graph-traversals/2-sat.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
title: 2-SAT
weight: 9
authors:
- Сергей Слотин
- Максим Иванов
- Сергей Слотин
- Максим Иванов
prerequisites:
- scc
- scc
---

**Ликбез.** Конъюнкция — это «правильный» термин для логического «И» (обозначается $\wedge$ или &). Конъюнкция возвращает `true` тогда и только тогда, когда обе переменные `true`.
Expand Down Expand Up @@ -60,4 +60,4 @@ prerequisites:
0. Построим граф импликаций, заменив все выражения вида $a | b$ двумя ребрами $!a \rightarrow b$ и $!b \rightarrow a$.
1. [Найдем](../scc) все компоненты сильной связности в графе импликаций.
2. Проверим, что для любого значения $x$ его отрицание лежит в другой компоненте сильной связности: $c[ x ] \neq c[ !x ]$. Если это не так, то решения не существует.
3. Если требуется выводить ответ, то положим условие $x$ верным, если $c[ x ] < c[ !x ]$, и неверным в противном случае.
3. Если требуется выводить ответ, то положим условие $x$ верным, если $c[ x ] > c[ !x ]$, и неверным в противном случае.