COCI '08 Contest 2 #3 Perket

View as PDF

Submit solution


Points: 7
Time limit: 0.6s
Memory limit: 32M

Problem types

"Perket" is a widely known and delicious meal. For perket to be what it is, cooks must carefully choose the ingredients to get the fullest taste possible while keeping the meal traditional.

You have N ingredients at your disposal. For each we know its sourness S and bitterness B. When using multiple ingredients, the total sourness is the product of sourness amounts of all ingredients, while the total bitterness is the sum of bitterness amounts of all ingredients.

As everyone knows, perket is supposed to be neither sour nor bitter; we want to choose the ingredients so that the absolute difference between sourness and bitterness is the smallest.

Also, it is necessary to use at least one ingredient; you can't serve water as the main course.

Input Specification

The first line contains the integer N (1 \le N \le 10), the number of ingredients at our disposal. Each of the next N lines contains two integers separated by a space, the sourness and bitterness of each ingredient.

The input data will be such that, if we make a meal with all ingredients, both the sourness and bitterness will be less than 1\,000\,000\,000.

Output Specification

Output the smallest possible difference between sourness and bitterness.

Sample Input 1

1
3 10

Sample Output 1

7

Sample Input 2

2
3 8
5 8

Sample Output 2

1

Sample Input 3

4
1 7
2 6
3 8
4 9

Sample Output 3

1

In the third example, we choose the last three ingredients. The total sourness is then 2\cdot 3\cdot 4=24 and bitterness is 6+8+9=23. The difference is 1.


Comments

There are no comments at the moment.