AKBAR - Akbar , The great


All of us are familiar with the reign of the great mughal ruler, Akbar. He was always concerned with the prosperity and safety of the people. Therefore to safeguard his kingdom (which consisted of N cities) he wanted to place secret soldiers all over his kingdom so as to protect the people. But since his kingdom is very large therefore he wanted to place them in such a way that every city is protected by one and only one soldier.According to Akbar, this is the optimum placement.

As for these soldiers they can protect multiple cities according to their strengths.

The strength of a particular soldier is defined as the maximum distance upto which a guard can protect a city from its base city(base city is the city assigned to the guard). If there are 3 cities C1, C2 and C3 such that C1 C2 and C2 C3 are connected respectively, if a soldier with strength 1 is placed at C2 then all the cities C1, C2 and C3 are protected by that soldier.

Also the kingdom is connected with a network of secret two way roads for faster access only accessible to these soldiers. The length of any road on this network between any two cities is 1 kms. There are R such roads in the kingdom. 

He had given this task to birbal to place the soldiers. Birbal didn't wanted to be a fool in front of the king, therefore took the job and placed M soldiers all over the kingdom but he was not very good at mathematics. But since he is very intelligent he somehow places the guards all over the kingdom and now turns to you (who is a genius mathematician ;) ) to check whether his placements are good or not.

Your task is to check if the placements of the soldiers are optimum or not.

INPUT

The input consists of T test cases. Each test case then consists of 3 parts.The first line consists of N, R and M.

the next R lines consists of two numbers A and B denoting the two cities between which a road exists.

the next M lines consists of 2 numbers, city number K and strength S of that particular soldier.

=> strength 0 means it will only guard the city on which it is present.

=> assume every city is accesible from every other city.

CONSTRAINTS

T <= 10;

1 <= N <= 10^6;

N - 1 <= R <= min(10^7, (N * (N - 1) ) / 2));

1 <= K <= N;

0 <= S <= 10^6

OUTPUT

print "Yes" if the soldiers are placed optimumly else print "No", (quotes are for clarity.)

SAMPLE

INPUT
2
3 2 2
1 2
2 3
1 2
2 0
4 5 2
1 4
1 2
1 3
4 2
3 4
2 1
3 0

OUTPUT
No
Yes

WARNING ==> Large input.


hide comments
aj_254: 2019-04-21 14:29:43

just make sure that each is gaurded by any one number of gaurds ...if even one city left ungaurded print no
else:
print yes ez pz lemon squeezy

aj_254: 2019-04-21 13:02:16

ac in pypi2 0.78 sec. after 4 tle and 9 wa.. very tricky question language is very bad,,in python use deque during bfs for ac

Last edit: 2019-04-21 13:02:38
ashwani_er: 2019-03-31 12:11:34

The problem statement is ambiguous. A city having no soldier should be protected by any no. of soldier and if a city has a soldier assigned to it then only that soldier should protect it.
e.g.
2
5 4 3
1 2
2 3
3 4
4 5

1 3

4 0
5 0
5 4 3
1 2
2 3
3 4
4 5
1 2
4 0
5 0
output No
Yes

midoriya: 2019-03-21 18:24:32

I am getting WA. Tried all the test cases in comments. couldn't find the issue please help
my solution id is 23462006

Simes: 2019-03-12 21:10:29

The question is worded just fine. It's all the comments that say the question really wants something different that sowed doubts in my mind.

I found it surprisingly difficult to get accepted though - I took too many shortcuts that tripped me up. I really should know better.

masterchef2209: 2019-03-01 16:02:55

This question is very poorly worded(maybe intentionally) but it wasted a lot of time.
[SPOILER]


In simple words print "Yes" only when "ALL" cities are protected by EXACTLY one soldier.
Else print "No".
1)This means no city should be left unprotected.
2)No city should fall under the protection of more than one soldier.

zarif_2002: 2019-02-10 05:00:08

only bfs. dfs is worthless for some test case.

adityaxxx: 2019-02-06 16:07:20

@manoj_0786 I think you have to follow Birbal's order sequentially, and, it's not necessary for a soldier to look after every city under his strength. What's necessary here is to see if all the cities here are being protected by sequentially placing the soldiers at mentioned cities.

manoj_0786: 2018-11-29 07:11:23

ans must be no for this test case:
1
4 4 2
1 2
2 4
4 3
1 3
1 0
3 2

but they are giving yes

ankur314: 2018-09-18 06:03:59

Those having problem in first TC, read the words written in bold in problem statement


Added by:Prayank Mathur
Date:2014-10-12
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:own