CF1416D.Graph and Queries
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given an undirected graph consisting of n vertices and m edges. Initially there is a single integer written on every vertex: the vertex i has pi written on it. All pi are distinct integers from 1 to n .
You have to process q queries of two types:
- 1 v — among all vertices reachable from the vertex v using the edges of the graph (including the vertex v itself), find a vertex u with the largest number pu written on it, print pu and replace pu with 0 ;
- 2 i — delete the i -th edge from the graph.
Note that, in a query of the first type, it is possible that all vertices reachable from v have 0 written on them. In this case, u is not explicitly defined, but since the selection of u does not affect anything, you can choose any vertex reachable from v and print its value (which is 0 ).
输入格式
The first line contains three integers n , m and q ( 1≤n≤2⋅105 ; 1≤m≤3⋅105 ; 1≤q≤5⋅105 ).
The second line contains n distinct integers p1 , p2 , ..., pn , where pi is the number initially written on vertex i ( 1≤pi≤n ).
Then m lines follow, the i -th of them contains two integers ai and bi ( 1≤ai,bi≤n , ai=bi ) and means that the i -th edge connects vertices ai and bi . It is guaranteed that the graph does not contain multi-edges.
Then q lines follow, which describe the queries. Each line is given by one of the following formats:
- 1 v — denotes a query of the first type with a vertex v ( 1≤v≤n ).
- 2 i — denotes a query of the second type with an edge i ( 1≤i≤m ). For each query of the second type, it is guaranteed that the corresponding edge is not deleted from the graph yet.
输出格式
For every query of the first type, print the value of pu written on the chosen vertex u .
输入输出样例
输入#1
5 4 6 1 2 5 4 3 1 2 2 3 1 3 4 5 1 1 2 1 2 3 1 1 1 2 1 2
输出#1
5 1 2 0