CF283E.Cow Tennis Tournament

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Farmer John is hosting a tennis tournament with his nn cows. Each cow has a skill level sis_{i} , and no two cows having the same skill level. Every cow plays every other cow exactly once in the tournament, and each cow beats every cow with skill level lower than its own.

However, Farmer John thinks the tournament will be demoralizing for the weakest cows who lose most or all of their matches, so he wants to flip some of the results. In particular, at kk different instances, he will take two integers ai,bia_{i},b_{i} (ai<bi)(a_{i}<b_{i}) and flip all the results between cows with skill level between aia_{i} and bib_{i} inclusive. That is, for any pair x,yx,y he will change the result of the match on the final scoreboard (so if xx won the match, the scoreboard will now display that yy won the match, and vice versa). It is possible that Farmer John will change the result of a match multiple times. It is not guaranteed that aia_{i} and bib_{i} are equal to some cow's skill level.

Farmer John wants to determine how balanced he made the tournament results look. In particular, he wants to count the number of triples of cows (p,q,r)(p,q,r) for which the final leaderboard shows that cow pp beats cow qq , cow qq beats cow rr , and cow rr beats cow pp . Help him determine this number.

Note that two triples are considered different if they do not contain the same set of cows (i.e. if there is a cow in one triple that is not in the other).

输入格式

On the first line are two space-separated integers, nn and kk (3<=n<=105; 0<=k<=105)(3<=n<=10^{5}; 0<=k<=10^{5}) . On the next line are nn space-separated distinct integers, s1,s2,...,sns_{1},s_{2},...,s_{n} (1<=si<=109)(1<=s_{i}<=10^{9}) , denoting the skill levels of the cows. On the next kk lines are two space separated integers, aia_{i} and bib_{i} (1<=ai<bi<=109)(1<=a_{i}<b_{i}<=10^{9}) representing the changes Farmer John made to the scoreboard in the order he makes it.

输出格式

A single integer, containing the number of triples of cows (p,q,r)(p,q,r) for which the final leaderboard shows that cow pp beats cow qq , cow qq beats cow rr , and cow rr beats cow pp .

Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    3 2
    1 2 3
    1 2
    2 3
    

    输出#1

    1
    
  • 输入#2

    5 3
    5 9 4 1 7
    1 7
    2 8
    3 9
    

    输出#2

    3
    

说明/提示

In the first sample, cow 3 > cow 1, cow 3 > cow 2, and cow 2 > cow 1. However, the results between cows 1 and 2 and cows 2 and 3 are flipped, so now FJ's results show that cow 1 > cow 2, cow 2 > cow 3, and cow 3 > cow 1, so cows 1, 2, and 3 form a balanced triple.

首页