Algorithm


A. What is for dinner?
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

In one little known, but very beautiful country called Waterland, lives a lovely shark Valerie. Like all the sharks, she has several rows of teeth, and feeds on crucians. One of Valerie's distinguishing features is that while eating one crucian she uses only one row of her teeth, the rest of the teeth are "relaxing".

For a long time our heroine had been searching the sea for crucians, but a great misfortune happened. Her teeth started to ache, and she had to see the local dentist, lobster Ashot. As a professional, Ashot quickly relieved Valerie from her toothache. Moreover, he managed to determine the cause of Valerie's developing caries (for what he was later nicknamed Cap).

It turned that Valerie eats too many crucians. To help Valerie avoid further reoccurrence of toothache, Ashot found for each Valerie's tooth its residual viability. Residual viability of a tooth is a value equal to the amount of crucians that Valerie can eat with this tooth. Every time Valerie eats a crucian, viability of all the teeth used for it will decrease by one. When the viability of at least one tooth becomes negative, the shark will have to see the dentist again.

Unhappy, Valerie came back home, where a portion of crucians was waiting for her. For sure, the shark couldn't say no to her favourite meal, but she had no desire to go back to the dentist. That's why she decided to eat the maximum amount of crucians from the portion but so that the viability of no tooth becomes negative.

As Valerie is not good at mathematics, she asked you to help her to find out the total amount of crucians that she can consume for dinner.

We should remind you that while eating one crucian Valerie uses exactly one row of teeth and the viability of each tooth from this row decreases by one.

Input

The first line contains three integers nmk (1 ≤ m ≤ n ≤ 1000, 0 ≤ k ≤ 106) — total amount of Valerie's teeth, amount of tooth rows and amount of crucians in Valerie's portion for dinner. Then follow n lines, each containing two integers: r (1 ≤ r ≤ m) — index of the row, where belongs the corresponding tooth, and c (0 ≤ c ≤ 106) — its residual viability.

It's guaranteed that each tooth row has positive amount of teeth.

Output

In the first line output the maximum amount of crucians that Valerie can consume for dinner.

Examples
input
Copy
4 3 18
2 3
1 2
3 6
2 3
output
Copy
11
input
Copy
2 2 13
1 13
2 12
output
Copy
13

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <cstdio>

int main(){

    long n(0), m(0), k(0); scanf("%ld %ld %ld", &n, &m, &k);
    long *viability = new long[m + 1];

    const long maxV = 1000000;
    for(long row = 1; row <= m; row++){viability[row] = maxV;}

    for(int p = 0; p < n; p++){
        long currentRow(0), currentV(0); scanf("%ld %ld", ¤tRow, ¤tV);
        if(currentV < viability[currentRow]){viability[currentRow] = currentV;}
    }

    long total(0);
    for(long row = 1; row <= m; row++){total += viability[row];}
    printf("%ld\n", total < k ? total : k);




    delete[] viability;
    return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
4 3 18
2 3
1 2
3 6
2 3

Output

x
+
cmd
11
Advertisements

Demonstration


Codeforces Solution-A. What is for dinner?-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+