CF276C.Little Girl and Maximum Sum

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The little girl loves the problems on array queries very much.

One day she came across a rather well-known problem: you've got an array of nn elements (the elements of the array are indexed starting from 1); also, there are qq queries, each one is defined by a pair of integers lil_{i} , rir_{i} (1<=li<=ri<=n)(1<=l_{i}<=r_{i}<=n) . You need to find for each query the sum of elements of the array with indexes from lil_{i} to rir_{i} , inclusive.

The little girl found the problem rather boring. She decided to reorder the array elements before replying to the queries in a way that makes the sum of query replies maximum possible. Your task is to find the value of this maximum sum.

输入格式

The first line contains two space-separated integers nn ( 1<=n<=21051<=n<=2·10^{5} ) and qq ( 1<=q<=21051<=q<=2·10^{5} ) — the number of elements in the array and the number of queries, correspondingly.

The next line contains nn space-separated integers aia_{i} ( 1<=ai<=21051<=a_{i}<=2·10^{5} ) — the array elements.

Each of the following qq lines contains two space-separated integers lil_{i} and rir_{i} ( 1<=li<=ri<=n1<=l_{i}<=r_{i}<=n ) — the ii -th query.

输出格式

In a single line print a single integer — the maximum sum of query replies after the array elements are reordered.

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 3
    5 3 2
    1 2
    2 3
    1 3
    

    输出#1

    25
    
  • 输入#2

    5 3
    5 2 4 1 3
    1 5
    2 3
    2 3
    

    输出#2

    33
    
首页