Codeforces Round #481 (Div. 3) F. Mentors 思维

BUG反馈门

F. Mentors
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

In BerSoft nn programmers work, the programmer ii is characterized by a skill riri.

A programmer aa can be a mentor of a programmer bb if and only if the skill of the programmer aa is strictly greater than the skill of the programmer bb (ra>rb)(ra>rb) and programmers aa and bb are not in a quarrel.

You are given the skills of each programmers and a list of kk pairs of the programmers, which are in a quarrel (pairs are unordered). For each programmer ii, find the number of programmers, for which the programmer ii can be a mentor.

Input

The first line contains two integers nn and kk (2n2105(2≤n≤2⋅1050kmin(2105,n(n1)2))0≤k≤min(2⋅105,n⋅(n−1)2)) — total number of programmers and number of pairs of programmers which are in a quarrel.

The second line contains a sequence of integers r1,r2,,rnr1,r2,…,rn (1ri109)(1≤ri≤109), where riri equals to the skill of the ii-th programmer.

Each of the following kk lines contains two distinct integers xxyy (1x,yn(1≤x,y≤nxy)x≠y) — pair of programmers in a quarrel. The pairs are unordered, it means that if xx is in a quarrel with yy then yy is in a quarrel with xx. Guaranteed, that for each pair (x,y)(x,y) there are no other pairs (x,y)(x,y) and (y,x)(y,x) in the input.

Output

Print nn integers, the ii-th number should be equal to the number of programmers, for which the ii-th programmer can be a mentor. Programmers are numbered in the same order that their skills are given in the input.

Examples
input
Copy
4 2
10 4 10 15
1 2
4 3
output
Copy
0 0 1 2 
input
Copy
10 4
5 4 1 5 4 3 7 1 2 5
4 6
2 1
10 8
3 5
output
Copy
5 4 0 5 3 3 9 0 2 5 
Note

In the first example, the first programmer can not be mentor of any other (because only the second programmer has a skill, lower than first programmer skill, but they are in a quarrel). The second programmer can not be mentor of any other programmer, because his skill is minimal among others. The third programmer can be a mentor of the second programmer. The fourth programmer can be a mentor of the first and of the second programmers. He can not be a mentor of the third programmer, because they are in a quarrel.


/**

题意:给定n个人的能力值,如果该人能力值大于其它人且这个人不和他们吵架,那么我们就可以说这个这个人可以做其它人的导师;'
求解每个人可以作为多少学生的导师;

题解:  看题是真的是看了半天 后来也是在网吧没有ac  辜负了家辉 喵喵喵;
后来也是听了家辉的思路  敲了敲 然后就过了.....Orz;

首先分析能力值  一个二分就出来了  那么我们如何处理吵架这个事情呢

举个例子吧:  x y :1 3 表示 1号和3号吵架 那么我们可以这样分析

如果1号的能力值大于3号(a[1]>a[3]) 那么我们在查找1号的时候需要减去1(三号不满足条件)  ans[1]--;
如果1号的能力值小于3号(a[1]<a[3]) 那么我们在查找3号的时候需要减去1(一号不满足条件)  ans[3]--;
等于的情况不予考虑   二分为lower_bound(); 

*/

#include<bits/stdc++.h>
#define ll long long
using namespace std;

const int maxn=2e5+7;
int a[maxn],b[maxn],ans[maxn],l,r;

int main (){
	int n,m;scanf("%d %d",&n,&m);
	memset(ans,0,(n+3)*sizeof(int));
	for(int i=0;i<n;i++) scanf("%d",&a[i]),b[i]=a[i];
	for(int i=0;i<m;i++){
		scanf("%d %d",&l,&r);l--,r--;
		if(a[l]>a[r]) ans[l]--;
		else if(a[l]<a[r]) ans[r]--;
	}
	sort(b,b+n);
	for(int i=0;i<n;i++){
		int res=lower_bound(b,b+n,a[i])-b;
		printf("%d\n",ans[i]+res);
	}
	return 0;
}

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值