RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
문제 R03724

Policija

설명

To help capture criminals on the run, the police are introducing a new computer system. The area
covered by the police contains N cities and E bidirectional roads connecting them. The cities are
labelled 1 to N.
The police often want to catch criminals trying to get from one city to another. Inspectors, looking at a
map, try to determine where to set up barricades and roadblocks. The new computer system should
answer the following two types of queries:
1. Consider two cities A and B, and a road connecting cities \(G_{1}\) and \(G_{2}\). Can the criminals get
from city A to city B if that one road is blocked and the criminals can't use it?
2. Consider three cities A, B and C. Can the criminals get from city A to city B if the entire city
C is cut off and the criminals can't enter that city?
Write a program that implements the described system.

제약
입력 형식

The first line contains two integers N and E (\(2 \le N \le 100\,000\), \(1 \le E \le 500\,000\)), the number of cities
and roads.
Each of the following E lines contains two distinct integers between 1 and N – the labels of two cities
connected by a road. There will be at most one road between any pair of cities.
The following line contains the integer Q (\(1 \le Q \le 300\,000\)), the number of queries the system is being
tested on.
Each of the following Q lines contains either four or five integers. The first of these integers is the type
of the query – 1 or 2.
If the query is of type 1, then the same line contains four more integers A, B, \(G_{1}\) and \(G_{2}\) as described
earlier. A and B will be different. \(G_{1}\) and \(G_{2}\) will represent an existing road.
If the query is of type 2, then the same line contains three more integers A, B and C. A, B and C will be
distinct integers.
The test data will be such that it is initially possible to get from each city to every other city.

출력 형식

Output the answers to all Q queries, one per line. The answer to a query can be "yes" or "no".
Note: if your program correctly answers all questions of one type but not the other, it will receive 50%
of the score for that case. Even then your program needs to answer all Q queries (the other queries can
be answered arbitrarily).

예제 1
입력
13 15
1 2
2 3
3 5
2 4
4 6
2 6
1 4
1 7
7 8
7 9
7 10
8 11
8 12
9 12
12 13
5
1 5 13 1 2
1 6 2 1 4
1 13 6 7 8
2 13 6 7
2 13 6 8
출력
yes
yes
yes
no
yes
문제 정보

생성자가 기록되지 않았습니다.

출처 COI 2007

평가 및 의견

Policija

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

Policija

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8