Baltic OI '18 P4 - Alternating Current

View as PDF

Submit solution


Points: 25 (partial)
Time limit: 1.0s
Memory limit: 1G

Problem type
Baltic Olympiad in Informatics: 2018 Day 2, Problem 1

Fredrik is at home, playing with a custom-built model railway which he is very proud of. The railway consists of N segments connected in a circle, numbered 1,2,\dots,N in clockwise order. Electricity to the train is provided through M curved wires that pass along the circle. Each segment has at least one wire that goes along it.

However, Fredrik is becoming bored with his circling train and decides to add a train switch to every segment, which he could use to cause derailing accidents and other exciting scenarios. But the switches also need electricity. And not just any kind of electricity; they specifically need alternating current.

The way you get alternating current, Fredrik figures, is by having current that goes in both directions. Each wire only gives current in one direction (either clockwise or counter-clockwise) but Fredrik is free to decide which. Thus, what he wants to do is to make a decision about the direction of the current in each wire, so that every track segment is covered by both a wire with clockwise-directed current and a wire with counter-clockwise-directed current.

Can you help Fredrik with this task?

sample

A solution to the first sample. The curved arrows outside the railway represent the wires that provide electricity. The direction of each arrow represents Fredrik's choice of direction of the current (with the blue and red colors emphasizing the different directions). Note that all arrows could have been reversed to get the other valid solution: 11010.

Input

The first line contains two integers N and M, the number of railway segments and the number of wires, respectively.

The next M lines each contains two numbers 1 \le a,b \le N, indicating that there is a wire that covers segments a,a+1,\dots,b. If b is smaller than a, it means that the sequence wraps around, i.e. segments a,\dots,N,1,\dots,b are covered. Note that if a=b, the wire covers only one segment.

Output

Output a single line with M characters, each being either 0 or 1. The ith character of the line should be 0 if the current in the ith wire given in the input should be directed clockwise, or 1 if it should be directed counter-clockwise. If there are multiple solutions you may output any of them.

If there is no valid solution, output impossible.

Constraints

Your solution will be tested on a set of test groups, each worth a number of points. Each test group contains a set of test cases. To get the points for a test group you need to solve all test cases in the test group. Your final score will be the maximum score of a single submission.

Group Points Limits Additional Constraints
1 13 2 \le N, M \le 15 None
2 20 2 \le N, M \le 100 None
3 22 2 \le N, M \le 1000 None
4 19 2 \le N, M \le 100\,000 No wire has b < a
5 26 2 \le N, M \le 100\,000 None

Sample Input 1

10 5
1 5
6 7
5 1
7 2
2 4

Sample Output 1

00101

Sample Input 2

10 5
1 4
2 5
4 7
6 10
8 1

Sample Output 2

impossible

Sample Input 3

5 2
1 5
3 3

Sample Output 3

impossible

Sample Input 4

5 3
3 3
2 1
4 2

Sample Output 4

101
Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported

Comments

There are no comments at the moment.