CF1268D.Invertation in Tournament

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a tournament — complete directed graph.

In one operation you can pick any vertex vv and change the direction of all edges with vv on one of the ends (i.e all edges uvu \to v change their orientation to vuv \to u and vice versa).

You want to make the tournament strongly connected with the smallest possible number of such operations if it is possible.

Also, if it is possible, you need to find the number of ways to make this number of operations to make graph strongly connected (two ways are different if for some ii vertex that we chose on ii -th operation in one way is different from vertex that we chose on ii -th operation in another way). You only need to find this value modulo 998244353998\,244\,353 .

输入格式

The first line of input contains one integer nn ( 3n20003 \leq n \leq 2000 ): the number of vertices in the tournament.

Following nn lines contain a description of the given tournament, each of them contains a binary string of length nn . If jj -th character of ii -th string is equal to '1', then the graph has an edge iji \to j .

It is guaranteed that there are no edges iii \to i and the graph has exactly one edge among iji \to j and jij \to i for different ii and jj .

输出格式

If it is not possible to convert tournament to strongly connected with the given operations, output "-1".

Otherwise, output two integers: the smallest number of operations that you need to make the given graph strongly connected and the number of ways to do this number of operations to make graph strongly connected, modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    3
    010
    001
    100
    

    输出#1

    0 1
    
  • 输入#2

    4
    0010
    1000
    0100
    1110
    

    输出#2

    -1
    
  • 输入#3

    6
    010000
    001000
    100000
    111001
    111100
    111010
    

    输出#3

    2 18
    
首页