题库练习 New Year and Boolean Bridges
← 上一题 下一题 →

A11544 | New Year and Boolean Bridges

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Your friend has a hidden directed graph with $n$ nodes.

Let $f(u,v)$ be true if there is a directed path from node $u$ to node $v$ , and false otherwise. For each pair of distinct nodes, $u,v$ , you know at least one of the three statements is true:

1. ![](/uploads/acgo/image/382065ee935567e3_3ec852cd20ad.jpeg)
2. ![](/uploads/acgo/image/58f85951d229e218_6803a4c3b9e5.jpeg)
3. ![](/uploads/acgo/image/9ff4700ebf47e4fc_778a29164f45.jpeg)

Here AND, OR and XOR mean AND, OR and exclusive OR operations, respectively.

You are given an $n$ by $n$ matrix saying which one of the three statements holds for each pair of vertices. The entry in the $u$ -th row and $v$ -th column has a single character.

1. If the first statement holds, this is represented by the character 'A'.
2. If the second holds, this is represented by the character 'O'.
3. If the third holds, this is represented by the character 'X'.
4. The diagonal of this matrix will only contain the character '-'.

Note that it is possible that a pair of nodes may satisfy multiple statements, in which case, the character given will represent one of the true statements for that pair. This matrix is also guaranteed to be symmetric.

You would like to know if there is a directed graph that is consistent with this matrix. If it is impossible, print the integer -1. Otherwise, print the minimum number of edges that could be consistent with this information.

输入格式

The first line will contain an integer $n$ ( $1<=n<=47$ ), the number of nodes.

The next $n$ lines will contain $n$ characters each: the matrix of what you know about the graph connectivity in the format described in the statement.

输出格式

Print the minimum number of edges that is consistent with the given information, or -1 if it is impossible.

输入输出样例

输入 #1
4
-AAA
A-AA
AA-A
AAA-
输出 #1
4
输入 #2
3
-XX
X-X
XX-
输出 #2
2
C++ 编辑器
输入
输出