CF1326F1.Wise Men (Easy Version)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

This is the easy version of the problem. The difference is constraints on the number of wise men and the time limit. You can make hacks only if all versions of this task are solved.

nn wise men live in a beautiful city. Some of them know each other.

For each of the n!n! possible permutations p1,p2,,pnp_1, p_2, \ldots, p_n of the wise men, let's generate a binary string of length n1n-1 : for each 1i<n1 \leq i < n set si=1s_i=1 if pip_i and pi+1p_{i+1} know each other, and si=0s_i=0 otherwise.

For all possible 2n12^{n-1} binary strings, find the number of permutations that produce this binary string.

输入格式

The first line of input contains one integer nn ( 2n14)2 \leq n \leq 14) — the number of wise men in the city.

The next nn lines contain a binary string of length nn each, such that the jj -th character of the ii -th string is equal to '1' if wise man ii knows wise man jj , and equals '0' otherwise.

It is guaranteed that if the ii -th man knows the jj -th man, then the jj -th man knows ii -th man and no man knows himself.

输出格式

Print 2n12^{n-1} space-separated integers. For each 0x<2n10 \leq x < 2^{n-1} :

  • Let's consider a string ss of length n1n-1 , such that si=x2i1mod2s_i = \lfloor \frac{x}{2^{i-1}} \rfloor \bmod 2 for all 1in11 \leq i \leq n - 1 .
  • The (x+1)(x+1) -th number should be equal to the required answer for ss .

输入输出样例

  • 输入#1

    3
    011
    101
    110

    输出#1

    0 0 0 6
  • 输入#2

    4
    0101
    1000
    0001
    1010

    输出#2

    2 2 6 2 2 6 2 2

说明/提示

In the first test, each wise man knows each other, so every permutation will produce the string 1111 .

In the second test:

  • If p={1,2,3,4}p = \{1, 2, 3, 4\} , the produced string is 101101 , because wise men 11 and 22 know each other, 22 and 33 don't know each other, and 33 and 44 know each other;
  • If p={4,1,2,3}p = \{4, 1, 2, 3\} , the produced string is 110110 , because wise men 11 and 44 know each other, 11 and 22 know each other and 22 , and 33 don't know each other;
  • If p={1,3,2,4}p = \{1, 3, 2, 4\} , the produced string is 000000 , because wise men 11 and 33 don't know each other, 33 and 22 don't know each other, and 22 and 44 don't know each other.
首页