CF585D.Lizard Era: Beginning
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
In the game Lizard Era: Beginning the protagonist will travel with three companions: Lynn, Meliana and Worrigan. Overall the game has n mandatory quests. To perform each of them, you need to take exactly two companions.
The attitude of each of the companions to the hero is an integer. Initially, the attitude of each of them to the hero of neutral and equal to 0. As the hero completes quests, he makes actions that change the attitude of the companions, whom he took to perform this task, in positive or negative direction.
Tell us what companions the hero needs to choose to make their attitude equal after completing all the quests. If this can be done in several ways, choose the one in which the value of resulting attitude is greatest possible.
输入格式
The first line contains positive integer n ( 1<=n<=25 ) — the number of important tasks.
Next n lines contain the descriptions of the tasks — the i -th line contains three integers li,mi,wi — the values by which the attitude of Lynn, Meliana and Worrigan respectively will change towards the hero if the hero takes them on the i -th task. All the numbers in the input are integers and do not exceed 107 in absolute value.
输出格式
If there is no solution, print in the first line "Impossible".
Otherwise, print n lines, two characters is each line — in the i -th line print the first letters of the companions' names that hero should take to complete the i -th task ('L' for Lynn, 'M' for Meliana, 'W' for Worrigan). Print the letters in any order, if there are multiple solutions, print any of them.
输入输出样例
输入#1
3 1 0 0 0 1 0 0 0 1
输出#1
LM MW MW
输入#2
7 0 8 9 5 9 -2 6 -8 -7 9 4 5 -4 -9 9 -4 5 2 -6 8 -7
输出#2
LM MW LM LW MW LM LW
输入#3
2 1 0 0 1 1 0
输出#3
Impossible