eolymp
bolt
Try our new interface for solving problems
Problems

The Cow Gathering

The Cow Gathering

Cows have assembled from around the world for a massive gathering. There are n cows, and n1 pairs of cows who are friends with each other. Every cow knows every other cow through some chain of friendships.

They had great fun, but the time has come for them to leave, one by one. They want to leave in some order such that as long as there are still at least two cows left, every remaining cow has a remaining friend. Furthermore, due to issues with luggage storage, there are m pairs of cows (ai, bi) such that cow ai must leave before cow bi. Note that the cows ai and bi may or may not be friends.

Help the cows figure out, for each cow, whether she could be the last cow to leave. It may be that there is no way for the cows to leave satisfying the above constraints.

Input

Line 1 contains two integers n and m (1n, m105).

Lines 2in each contain two integers xi and yi with 1xi, yin and xiyi indicating that cows xi and yi are friends.

Lines n + 1in + m each contain two integers ai and bi with 1ai, bin and aibi indicating that cow ai must leave the gathering before cow bi.

Output

The output should consist of n lines, with one integer di on each line such that di = 1 if cow i could be the last to leave, and di = 0 otherwise.

Time limit 1 second
Memory limit 128 MiB
Input example #1
5 1
1 2
2 3
3 4
4 5
2 4
Output example #1
0
0
1
1
1
Source 2018 USACO December, Platinum