Codeforces Round #169 (Div. 2)---C. Little Girl and Maximum Sum(簡單貪心)

來源:互聯網
上載者:User

標籤:貪心

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?≤?li?≤?ri?≤?n). 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?≤?li?≤?ri?≤?n) — 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 С++. It is preferred to use the cin, cout streams or the %I64d specifier.
Sample test(s)
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

貪心,統計出每一個位置出現的次數,然後當然出現最多的那個位置放最大的數,然後相乘累加就行

/*************************************************************************    > File Name: CF-169-C.cpp    > Author: ALex    > Mail: [email protected]     > Created Time: 2015年04月02日 星期四 15時11分23秒 ************************************************************************/#include <functional>#include <algorithm>#include <iostream>#include <fstream>#include <cstring>#include <cstdio>#include <cmath>#include <cstdlib>#include <queue>#include <stack>#include <map>#include <bitset>#include <set>#include <vector>using namespace std;const double pi = acos(-1.0);const int inf = 0x3f3f3f3f;const double eps = 1e-15;typedef long long LL;typedef pair <int, int> PLL;static const int N = 200100;int sum[N];int arr[N];int main(){    int n, q;    while (~scanf("%d%d", &n, &q))    {        memset(sum, 0, sizeof(sum));        for (int i = 1; i <= n; ++i)        {            scanf("%d", &arr[i]);        }        int l, r;        while (q--)        {            scanf("%d%d", &l, &r);            ++sum[l];            --sum[r + 1];        }        for (int i = 1; i <= n; ++i)        {            sum[i] += sum[i - 1];        }        sort(sum + 1, sum + n + 1);        sort(arr + 1, arr + n + 1);        LL ans = 0;        for (int i = n; i >= 1; --i)        {            ans += (LL)arr[i] * sum[i];        }        printf("%I64d\n", ans);    }    return 0;}

Codeforces Round #169 (Div. 2)---C. Little Girl and Maximum Sum(簡單貪心)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.