B - Graph Partition Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 500500

問題文

NN 頂点 MM 辺の連結無向グラフが与えられます。頂点には 11 から NN までの番号がついています。 辺の情報はマス目 SS を用いて表され、Si,jS_{i,j}1 のとき頂点 i,ji,j を結ぶ辺が存在し、そうでないとき存在しないことを表します。

頂点全体を空でない集合 V1,,VkV_1,\dots,V_k に分解し、以下を満たすようにすることが可能か判定してください。 可能な場合、集合の個数 kk の最大値を求めてください。

  • どの辺も、番号が隣り合う頂点集合の頂点どうしを結ぶ。より正確には、どの辺 (i,j)(i,j) に対しても、ある 1tk11\leq t\leq k-1 が存在し、iVt,jVt+1i\in V_t,j\in V_{t+1} または iVt+1,jVti\in V_{t+1},j\in V_t のいずれかを満たす。

制約

  • 2N2002 \leq N \leq 200
  • Si,jS_{i,j}0 または 1 である
  • Si,iS_{i,i}0 である
  • Si,j=Sj,iS_{i,j}=S_{j,i}
  • 与えられるグラフは連結
  • NN は整数である

入力

入力は以下の形式で標準入力から与えられる。

NN
S1,1...S1,NS_{1,1}...S_{1,N}
::
SN,1...SN,NS_{N,1}...S_{N,N}

出力

条件を満たす分割が不可能な場合、1-1 を出力せよ。 そうでない場合、集合の個数 kk の最大値を出力せよ。


入力例 1Copy

Copy
2
01
10

出力例 1Copy

Copy
2

頂点 1,21,2 をそれぞれ V1,V2V_1,V_2 に含めればよいです。


入力例 2Copy

Copy
3
011
101
110

出力例 2Copy

Copy
-1

入力例 3Copy

Copy
6
010110
101001
010100
101000
100000
010000

出力例 3Copy

Copy
4

Score : 500500 points

Problem Statement

Given is a connected undirected graph with NN vertices and MM edges. The vertices are numbered 11 to NN, and the edges are described by a grid of characters SS. If Si,jS_{i,j} is 1, there is an edge connecting Vertex ii and jj; otherwise, there is no such edge.

Determine whether it is possible to divide the vertices into non-empty sets V1,,VkV_1, \dots, V_k such that the following condition is satisfied. If the answer is yes, find the maximum possible number of sets, kk, in such a division.

  • Every edge connects two vertices belonging to two "adjacent" sets. More formally, for every edge (i,j)(i,j), there exists 1tk11\leq t\leq k-1 such that iVt,jVt+1i\in V_t,j\in V_{t+1} or iVt+1,jVti\in V_{t+1},j\in V_t holds.

Constraints

  • 2N2002 \leq N \leq 200
  • Si,jS_{i,j} is 0 or 1.
  • Si,iS_{i,i} is 0.
  • Si,j=Sj,iS_{i,j}=S_{j,i}
  • The given graph is connected.
  • NN is an integer.

Input

Input is given from Standard Input in the following format:

NN
S1,1...S1,NS_{1,1}...S_{1,N}
::
SN,1...SN,NS_{N,1}...S_{N,N}

Output

If it is impossible to divide the vertices into sets so that the condition is satisfied, print 1-1. Otherwise, print the maximum possible number of sets, kk, in a division that satisfies the condition.


Sample Input 1Copy

Copy
2
01
10

Sample Output 1Copy

Copy
2

We can put Vertex 11 in V1V_1 and Vertex 22 in V2V_2.


Sample Input 2Copy

Copy
3
011
101
110

Sample Output 2Copy

Copy
-1

Sample Input 3Copy

Copy
6
010110
101001
010100
101000
100000
010000

Sample Output 3Copy

Copy
4


2025-04-27 (Sun)
04:14:36 +00:00