CF1408G.Clusterization Counting

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn computers in the company network. They are numbered from 11 to nn .

For each pair of two computers 1i<jn1 \leq i < j \leq n you know the value ai,ja_{i,j} : the difficulty of sending data between computers ii and jj . All values ai,ja_{i,j} for i<ji<j are different.

You want to separate all computers into kk sets A1,A2,,AkA_1, A_2, \ldots, A_k , such that the following conditions are satisfied:

  • for each computer 1in1 \leq i \leq n there is exactly one set AjA_j , such that iAji \in A_j ;
  • for each two pairs of computers (s,f)(s, f) and (x,y)(x, y) ( sfs \neq f , xyx \neq y ), such that ss , ff , xx are from the same set but xx and yy are from different sets, as,f<ax,ya_{s,f} < a_{x,y} .

For each 1kn1 \leq k \leq n find the number of ways to divide computers into kk groups, such that all required conditions are satisfied. These values can be large, so you need to find them by modulo 998244353998\,244\,353 .

输入格式

The first line contains a single integer nn ( 1n15001 \leq n \leq 1500 ): the number of computers.

The ii -th of the next nn lines contains nn integers ai,1,ai,2,,ai,na_{i,1}, a_{i,2}, \ldots, a_{i,n} ( 0ai,jn(n1)20 \leq a_{i,j} \leq \frac{n (n-1)}{2} ).

It is guaranteed that:

  • for all 1in1 \leq i \leq n ai,i=0a_{i,i} = 0 ;
  • for all 1i<jn1 \leq i < j \leq n ai,j>0a_{i,j} > 0 ;
  • for all 1i<jn1 \leq i < j \leq n ai,j=aj,ia_{i,j} = a_{j,i} ;
  • all ai,ja_{i,j} for i<ji <j are different.

输出格式

Print nn integers: the kk -th of them should be equal to the number of possible ways to divide computers into kk groups, such that all required conditions are satisfied, modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    4
    0 3 4 6
    3 0 2 1
    4 2 0 5
    6 1 5 0

    输出#1

    1 0 1 1
  • 输入#2

    7
    0 1 18 15 19 12 21
    1 0 16 13 17 20 14
    18 16 0 2 7 10 9
    15 13 2 0 6 8 11
    19 17 7 6 0 4 5
    12 20 10 8 4 0 3
    21 14 9 11 5 3 0

    输出#2

    1 1 2 3 4 3 1

说明/提示

Here are all possible ways to separate all computers into 44 groups in the second example:

  • {1,2},{3,4},{5},{6,7}\{1, 2\}, \{3, 4\}, \{5\}, \{6, 7\} ;
  • {1},{2},{3,4},{5,6,7}\{1\}, \{2\}, \{3, 4\}, \{5, 6, 7\} ;
  • {1,2},{3},{4},{5,6,7}\{1, 2\}, \{3\}, \{4\}, \{5, 6, 7\} .
首页