CF685E.Travelling Through the Snow Queen's Kingdom
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Gerda is travelling to the palace of the Snow Queen.
The road network consists of n intersections and m bidirectional roads. Roads are numbered from 1 to m . Snow Queen put a powerful spell on the roads to change the weather conditions there. Now, if Gerda steps on the road i at the moment of time less or equal to i , she will leave the road exactly at the moment i . In case she steps on the road i at the moment of time greater than i , she stays there forever.
Gerda starts at the moment of time l at the intersection number s and goes to the palace of the Snow Queen, located at the intersection number t . Moreover, she has to be there at the moment r (or earlier), before the arrival of the Queen.
Given the description of the road network, determine for q queries li , ri , si and ti if it's possible for Gerda to get to the palace on time.
输入格式
The first line of the input contains integers n , m and q ( 2<=n<=1000 , 1<=m,q<=200000 ) — the number of intersections in the road network of Snow Queen's Kingdom, the number of roads and the number of queries you have to answer.
The i -th of the following m lines contains the description of the road number i . The description consists of two integers vi and ui ( 1<=vi,ui<=n , vi=ui ) — the indices of the intersections connected by the i -th road. It's possible to get both from vi to ui and from ui to vi using only this road. Each pair of intersection may appear several times, meaning there are several roads connecting this pair.
Last q lines contain the queries descriptions. Each of them consists of four integers li , ri , si and ti ( 1<=li<=ri<=m , 1<=si,ti<=n , si=ti ) — the moment of time Gerda starts her journey, the last moment of time she is allowed to arrive to the palace, the index of the starting intersection and the index of the intersection where palace is located.
输出格式
For each query print "Yes" (without quotes) if Gerda can be at the Snow Queen palace on time (not later than ri ) or "No" (without quotes) otherwise.
输入输出样例
输入#1
5 4 6 1 2 2 3 3 4 3 5 1 3 1 4 1 3 2 4 1 4 4 5 1 4 4 1 2 3 1 4 2 2 2 3
输出#1
Yes Yes Yes No No Yes