Canadian Computing Competition: 2025 Stage 1, Senior #3
You are taking an art class, and your current art assignment is very algorithmic. You have
For your assignment, you need to create a picture using
Your teacher has given you some room for artistic expression: before you create this pretty picture, you are allowed to change at most one pen to any other colour. After this picture is drawn, the pen will revert back to its original colour.
Your teacher will give you
To push your creative limits, your teacher also has
1 i c
indicates that the colour of the -th pen changes to .2 i p
indicates that the prettiness of the -th pen changes to .
The changes are executed sequentially (so the first change modifies the initial setup, the second change modifies the result of applying the first change, and so on).
As in the first picture you created, you are allowed to change the colour of at most one pen before the picture is created. Note that if you do change the colour of one pen, it affects only the next picture you draw, and the pen will revert to its previous colour before the next change is applied (if any).
What is the prettiness of the prettiest
Input Specification
The first line of input contains three space-separated integers
The next
The next
It is guaranteed that initially and after each change, there is at least one pen with each of the
The following table shows how the available
Marks | Bounds on |
Bounds on |
Additional constraints |
---|---|---|---|
5 | None | ||
2 | None | ||
2 | None | ||
2 | None | ||
2 | All prettiness values are distinct | ||
2 | None |
Output Specification
The output is
Sample Input 1
6 3 0
1 6
2 9
3 4
2 7
3 9
1 3
Sample Output 1
25
Explanation for Sample Output 1
There are six pens available in three different colours. The set of pens is:
- two pens of colour
, with prettiness and , - two pens of colour
, with prettiness and , - two pens of colour
, with prettiness and .
If we do not change the colour of any pens, the prettiest picture has prettiness
Sample Input 2
3 2 2
1 20
2 30
1 10
1 3 2
2 3 25
Sample Output 2
50
50
55
Explanation for Sample Output 2
There are three pens with two different colours available.
Before the first change, using pen
After the first change, pen
After the second change, pen
Comments