现在的位置: 首页 > 综合 > 正文

Codechef Dish Owner

2018年04月24日 ⁄ 综合 ⁄ 共 2713字 ⁄ 字号 评论关闭
文章目录

Problem Description

This summer, there is a worldwide competition being held in Chef Town and some of the best chefs of the world are participating. The rules of this competition are quite simple.
Each participant needs to bring his or her best dish. The judges will initially assign a score to each of the dishes. Now, several rounds will follow. In each round, any two chefs will be called up on the stage. Each of the chefs can then choose any one dish
to battle against the other chef and the one having the dish with the higher score will win this round. The winner of the round will also obtain all the dishes of the loser who will then be eliminated. In case both the dishes have equal scores, this round
will be considered as a tie and nothing else will happen. Note that initially each chef will have only one dish and all the chefs play the rounds optimally.
Your task is to simulate and answer some queries related to this. You will be given N dishes numbered from 1 to N with the ith dish belonging to the ith chef initially. You will also be given an array S where S[i] denotes the score given by the judges to the
ith dish before starting the rounds. You will have to answer Q queries, each of which can be of the following types :

1. 0 x y : This denotes that the chef containing dish number x competes with the chef containing dish number y currently in this round. If a single chef is the owner of both the dishes, print "Invalid query!" (without quotes), otherwise execute and store the
result of this round as described by the rules above.

2. 1 x : You need to output the index of the chef containing dish x at this point.

Input

First line of input contains an integer T denoting the number of test cases. For each test case, the first line contains an integer N denoting the number of chefs in the contest. The next line contains N space separated integers
where the ith integer represents S[i]. The next line contains an integer Q denoting the number of queries. Q lines follow where each line can be of the format 0 x y or 1 x as described in the problem statement.

Output

For each test, print in each line the answer for the queries as described in the problem statement .

Constraints

1 ≤ T ≤ 25
1 ≤ N ≤ 10000(104)
0 ≤ S[i] ≤ 1000000(106)
1 ≤ Q ≤ 10000(104)
1 ≤ x, y ≤ N

Example

Input:

1
2
1 2
2
0 1 2
1 1

Output:

2

Explanation

There are two chefs with scores of dishes 1 and 2 respectively. After the first query, chef 2 acquires dish 1 since S[2] > S[1] . Hence, the answer for the second query, i.e owner of the first dish is chef 2.

题解

简单并查集。每个厨师当前最优的菜一定是他自己的菜(因为否则他早就败了)。

#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;
int T,n,m,a[10002],fa[10002];
void init()
{
	scanf("%d",&n);
	int i;
	for(i=1;i<=n;i++)
	   {scanf("%d",&a[i]);
	    fa[i]=i;
	   }
}
int find(int x)
{
	if(fa[x]!=x) fa[x]=find(fa[x]);
	return fa[x];
}
void work()
{
	scanf("%d",&m);
	int i,x,y,r1,r2;
	for(i=1;i<=m;i++)
	   {scanf("%d",&x);
	    if(x==0)
	       {scanf("%d%d",&x,&y);
	        r1=find(x); r2=find(y);
		    if(r1==r2) printf("Invalid query!\n");
		    else
		       {if(a[r1]>a[r2]) fa[r2]=r1;
		        else if(a[r1]<a[r2]) fa[r1]=r2;
			   }
		   }
		else
		   {scanf("%d",&x);
		    y=find(x);
		    printf("%d\n",y);
		   }
	   }
}
int main()
{
	scanf("%d",&T);
	while(T--)
	   {init(); work();}
	return 0;
}

抱歉!评论已关闭.