CF1149E.Election Promises

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

In Byteland, there are two political parties fighting for seats in the Parliament in the upcoming elections: Wrong Answer Party and Time Limit Exceeded Party. As they want to convince as many citizens as possible to cast their votes on them, they keep promising lower and lower taxes.

There are nn cities in Byteland, connected by mm one-way roads. Interestingly enough, the road network has no cycles — it's impossible to start in any city, follow a number of roads, and return to that city. Last year, citizens of the ii -th city had to pay hih_i bourles of tax.

Parties will now alternately hold the election conventions in various cities. If a party holds a convention in city vv , the party needs to decrease the taxes in this city to a non-negative integer amount of bourles. However, at the same time they can arbitrarily modify the taxes in each of the cities that can be reached from vv using a single road. The only condition that must be fulfilled that the tax in each city has to remain a non-negative integer amount of bourles.

The first party to hold the convention is Wrong Answer Party. It's predicted that the party to hold the last convention will win the election. Can Wrong Answer Party win regardless of Time Limit Exceeded Party's moves?

输入格式

The first line of the input contains two integers nn , mm ( 1n2000001 \leq n \leq 200\,000 , 0m2000000 \leq m \leq 200\,000 ) — the number of cities and roads in Byteland.

The next line contains nn space-separated integers h1,h2,,hnh_1, h_2, \dots, h_n ( 0hi1090 \leq h_i \leq 10^9 ); hih_i denotes the amount of taxes paid in the ii -th city.

Each of the following mm lines contains two integers ( 1u,vn1 \leq u, v \leq n , uvu \neq v ), and describes a one-way road leading from the city uu to the city vv . There will be no cycles in the road network. No two roads will connect the same pair of cities.

We can show that the conventions cannot be held indefinitely for any correct test case.

输出格式

If Wrong Answer Party can win the election, output WIN in the first line of your output. In this case, you're additionally asked to produce any convention allowing the party to win regardless of the opponent's actions. The second line should contain nn non-negative integers h1,h2,,hnh'_1, h'_2, \dots, h'_n ( 0hi210180 \leq h'_i \leq 2 \cdot 10^{18} ) describing the amount of taxes paid in consecutive cities after the convention. If there are multiple answers, output any. We guarantee that if the party has any winning move, there exists a move after which no city has to pay more than 210182 \cdot 10^{18} bourles.

If the party cannot assure their victory, output LOSE in the first and only line of the output.

输入输出样例

  • 输入#1

    4 2
    2 1 1 5
    1 2
    3 4
    

    输出#1

    WIN
    1 5 1 5 
    
  • 输入#2

    4 2
    1 5 1 5
    1 2
    3 4
    

    输出#2

    LOSE
    
  • 输入#3

    3 3
    314 159 265
    1 2
    1 3
    3 2
    

    输出#3

    WIN
    0 0 0 
    
  • 输入#4

    6 4
    2 2 5 5 6 6
    1 3
    2 4
    3 5
    4 6
    

    输出#4

    LOSE
    

说明/提示

In the first example, Wrong Answer Party should hold the convention in the city 11 . The party will decrease the taxes in this city to 11 bourle. As the city 22 is directly reachable from 11 , we can arbitrarily modify the taxes in this city. The party should change the tax to 55 bourles. It can be easily proved that Time Limit Exceeded cannot win the election after this move if Wrong Answer Party plays optimally.

The second example test presents the situation we created after a single move in the previous test; as it's Wrong Answer Party's move now, the party cannot win.

In the third test, we should hold the convention in the first city. This allows us to change the taxes in any city to any desired value; we can for instance decide to set all the taxes to zero, which allows the Wrong Answer Party to win the election immediately.

首页