eolymp
bolt
Try our new interface for solving problems
Problems

Theorist

Theorist

Little Alan was bored so he asked Goran to give him an interesting problem. Since he's busy with preparing for exams, Goran could only recall one huge bipartite graph from his old days as a programming competitor. He gave the graph to Alan and said: You have to colour the edges of this bipartite graph using as few colours as possible in such a way that there are no two edges of the same colour sharing a node.

Alan excitedly ran to his room, took out his movable read/write device for its tape and start to work on the problem. However, he soon realized that he's missing something so he got back to Goran and said: Give me an infinite tape and I will solve your problem! Goran gave him a significant look: Infinite tape? If you continue to theorize about everything, there won't be a single thing named after you. After seeing Alan starting to tear up, Goran decided to show mercy: I will make it a bit easier for you. Let $c$ be the smallest number of colours needed to paint the graph in the described way. I will let you use at most $x$ colours, where $x$ is the lowest power of $2$ not less than $c$.

Help Alan solve the problem.

Note: A bipartite graph is a graph whose nodes can be divided in two sets (or sides) in such a way that each edge of graph connects one node from the first set with one node from the second set.

Input

The first line contains three positive integers: $l$, $r$ and $m$ ($1 ≤ l, r ≤ 10^5$, $1 ≤ m ≤ 500000$), representing the number of nodes in one side of the bipartite graph, number of nodes in the other side of the bipartite graph and the number of edges, in that order. $m$ lines follow, each containing two positive integers $a_i$ ($1 ≤ a_i ≤ l$) and $b_i$ ($1 ≤ b_i ≤ r$) which represent an edge between $a_i$-th node from the first side and $b_i$-th node from the second side of the bipartite graph. All pairs ($a_i$ , $b_i$) will be unique.

Output

In the first line print a single positive integer $k$, the number of colours used.

In the next $m$ lines print a single positive integer $c_i$ ($1 ≤ c_i ≤ k$), label of the colour of the $i$-th edge.

Note

Consider the second test. Minimal number of colours is equal to $3$. However, using $4$ colours is also acceptable because that’s the lowest power of $2$ which is not less than $3$.

Time limit 5 seconds
Memory limit 256 MiB
Input example #1
3 3 5
1 1
1 2
2 2
2 3
3 3
Output example #1
2
1
2
1
2
1
Input example #2
2 4 4
1 1
1 2
1 3
2 4
Output example #2
4
1
2
3
4
Source 2018 COCI Round 1, October 20