Coloring Graphs

아직 제출이 없습니다시간 제한6초메모리 제한1024 MB

문제

To address the impending STEM shortage early on, your local elementary school decided to teach graph theory to its kindergarten students!   To tap into their age-specific skills, the students are asked to color the vertices of a graph with colors of their own choosing. There is one constraint, however: they cannot use the same color for two vertices if those vertices are connected by an edge.  Furthermore, they are asked to use as few different colors as possible.  The illustration shows a few examples of student work.

There is one problem, as you can imagine: there is no money to train teachers to grade these students' submissions! Thus, your task is to write a program that computes the sample solutions for the graphs given on each work sheet!

입력

The input consists of a description of a single graph. The first line contains a number NN (2N112 \le N \le 11), the number of vertices in the graph.  Vertices are numbered 0N10 \ldots N-1. The following NN lines contain one or more numbers each.  The ithi^{th} line contains a list of vertex numbers v_j{ v\_j }, denoting edges from v_iv\_i to each v_jv\_j in the list. You may assume that the graph is connected (there is a path between any two pairs of vertices).

출력

Output the minimum number of colors required to color all vertices of the graph such that no vertices that share an edge are colored using the same color!

The sample input corresponds to the graphs shown on the illustration.