National Olympiad in Informatics, China, 2008

Day 1, Problem 2 - Course Design

Country Z is located on a mystical peninsula far-away in the east. During the dynasty when little Z reigned, roads were the major means of transportation. There are n total cities in country Z, and some cities are connected by bidirectional roads. What's interesting is that the longitudes of every city in country Z are unique, and that each city will be directly connected by a road to at most one city to its east. Country Z's capital city is its political, economic, and cultural center of tourism, each day being visited by thousands of people from other cities in country Z.

To make the traffic in country Z more smooth, little Z has decided to establish some number of courses, rebuilding all the roads to railroads.

We define a course to be a sequence of cities of length 1 or greater. Each city occurs at most once in the sequence, and adjacent cities in the sequence are directly connected by roads (to be rebuilt as railroads). Furthermore, each city can only occur in at most one course. In other words, no two courses can have common sections.

Realistically speaking, it is obviously not possible to reconstruct all roads as railroads. Thus, it is still sometimes necessary to use coaches when traveling from certain cities to the capital, where each coach travels back and forth between adjacent cities directly connected by roads. Therefore, one may need to repeatedly switch back and forth between coaches and trains when traveling from some city to reach the capital.

We define a city's "inconvenience value" to be the number of times one must take a coach when traveling from it to the capital. The overall inconvenience value for country Z is the greatest inconvenience value amongst of all of its cities. Clearly, the capital's inconvenience value is 0. Little Z wants to know how to design the courses when reconstructing railroads to minimize the overall inconvenience value of country Z, as well as how many such ways to design the courses. Since the total number of possible designs may be very big, little Z only cares about the value of this astronomical number modulo Q.

Note: The course 1–2–3 and the course 3–2–1 are equivalent, and reversing any course will still result in the same course. Two designs are considered different if and only if one design contains a course that does not belong to the other design.

Input Format

The first line contains three positive integers N, M, and Q, where N is the number of cities (numbered from 1 to N, city number 1 is the capital), M is the total number of roads, and Q is the number by which to modulo the total number of possible designs.
For the following M lines, each line contains two different positive integers ai and bi (1 ≤ ai, biN), indicating that there is a road connected city ai and city bi. It is guaranteed that each road only appears once in the input.

Output Format

The output should contain two lines. The first line should contain one integer, representing the minimum possible inconvenience value.
The second line should contain one integer, representing the number of possible designs that will yield the minimum possible inconvenience value, modulo Q.
If it is not possible to reach the capital from some city, then output -1 on both lines.

Sample Input

5 4 100
1 2
4 5
1 3
4 1

Sample Output

1
10

Explanation

The following are the 10 different designs that will yield the minimum inconvenience value of 1.

  1. 4–5
  2. 1–4–5
  3. 4–5, 1–2
  4. 4–5, 1–3
  5. 4–5, 2–1–3
  6. 2–1–4–5
  7. 3–1–4–5
  8. 1–4
  9. 2–1–4
  10. 3–1–4

Constraints

For 20% of the test cases, N, M ≤ 10.
For 50% of the test cases, N, M ≤ 200.
For 60% of the test cases, N, M ≤ 5000.
For 100% of the test cases, 1 ≤ N, M ≤ 100000, and 1 ≤ Q ≤ 120000000.

Scoring

For each test case, if the first line of output is wrong then you will be given a score of zero. Otherwise if the second line is wrong, then you will score 40% of the points for the test case. If both lines are correct, then you will score 100% of the points for the test case.

All Submissions
Best Solutions


Point Value: 30 (partial)
Time Limit: 2.00s
Memory Limit: 128M
Added: Aug 01, 2014

Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3

Comments (Search)

It's quiet in here...