시간 제한메모리 제한제출정답맞힌 사람정답 비율
7 초 512 MB0000.000%

문제

Having recently moved into a new home, you discover that its wiring is a bit messed up. A number of lights are controlled by a number of switches in a peculiar way. Every switch has two states: up and down (there is no use calling them on and off ). Some experiments reveal that each light depends on three switches, at least one of which must be in the correct state for the light to shine. Of course, the opposite state of the same switch might be correct for another light.

Your first impulse was to set the switches so that as many lights as possible shine. However, your cook (who is an expert in circuitry) seems to have the opinion that this would be quite hard, so you settle for a more modest aim. Set the switches to a state so that flipping any single switch to its opposite state does not make more lights shine than before the flip.

입력

The input will contain multiple test cases.

The first line of input contains the number of test cases t (1 ≤ t ≤ 25).

Each test case starts with a line containing the number of lights m (1 ≤ m ≤ 4 000) and the number of switches n (3 ≤ n ≤ 4 000). Each of the next m lines contains three distinct integers s1, s2 and s3 (1 ≤ si ≤ n), each of which is preceded by a + or - character. Line i gives the switches that control light i and their correct positions, where + means up and - means down. Light i will shine if at least one of the specified switches is set to its correct position.

출력

Output one line with a setting of the switches so that flipping any one of them does not make more lights shine. Give the setting as a string of n characters, each of which is + or -. Character i specifies the state of switch i. If more than one setting satisfies the constraints, display any such setting.

예제 입력 1

2
5 3
+1 +2 +3
+1 -2 +3
-1 +2 +3
-1 +2 -3
-1 -2 +3
4 4
+1 +2 +4
-1 -2 +4
+2 +3 +4
-2 -3 +4

예제 출력 1

+--
++++