跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2540. Little Girl and Maximum Sum

    ID: 2546 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 4 上传者: 标签>数据结构贪心模拟排序算法思想编程与模拟进阶难度共享题库Codeforces英文题面题目来源题面语言

Little Girl and Maximum Sum

题目描述

C. Little Girl and Maximum Sum
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 n elements (the elements of the array are indexed starting from 1); also, there are q queries, each one is defined by a pair of integers li, ri (1≤lirin). You need to find for each query the sum of elements of the array with indexes from li to ri, 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.

Input

The first line contains two space-separated integers n (1≤n≤2·105) and q (1≤q≤2·105) − the number of elements in the array and the number of queries, correspondingly.

The next line contains n space-separated integers ai (1≤ai≤2·105) − the array elements.

Each of the following q lines contains two space-separated integers li and ri (1≤lirin) − the i-th query.

Output

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 C++. It is preferred to use the cin, cout streams or the %I64d specifier.

Examples
Input
3 3
5 3 2
1 2
2 3
1 3
Output
25
Input
5 3
5 2 4 1 3
1 5
2 3
2 3
Output
33

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2186 题。保留原作者与原赛事署名。