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 n cities in Byteland, connected by m 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 i -th city had to pay hi bourles of tax.
Parties will now alternately hold the election conventions in various cities. If a party holds a convention in city v , 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 v 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 n , m ( 1≤n≤200000 , 0≤m≤200000 ) — the number of cities and roads in Byteland.
The next line contains n space-separated integers h1,h2,…,hn ( 0≤hi≤109 ); hi denotes the amount of taxes paid in the i -th city.
Each of the following m lines contains two integers ( 1≤u,v≤n , u=v ), and describes a one-way road leading from the city u to the city v . 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 n non-negative integers h1′,h2′,…,hn′ ( 0≤hi′≤2⋅1018 ) 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 2⋅1018 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 1 . The party will decrease the taxes in this city to 1 bourle. As the city 2 is directly reachable from 1 , we can arbitrarily modify the taxes in this city. The party should change the tax to 5 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.