题库练习 Compute Power
← 上一题 下一题 →

A11791 | Compute Power

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You need to execute several tasks, each associated with number of processors it needs, and the compute power it will consume.

You have sufficient number of analog computers, each with enough processors for any task. Each computer can execute up to one task at a time, and no more than two tasks total. The first task can be any, the second task on each computer must use strictly less power than the first. You will assign between 1 and 2 tasks to each computer. You will then first execute the first task on each computer, wait for all of them to complete, and then execute the second task on each computer that has two tasks assigned.

If the average compute power per utilized processor (the sum of all consumed powers for all tasks presently running divided by the number of utilized processors) across all computers exceeds some unknown threshold during the execution of the first tasks, the entire system will blow up. There is no restriction on the second tasks execution. Find the lowest threshold for which it is possible.

Due to the specifics of the task, you need to print the answer multiplied by 1000 and rounded up.

输入格式

The first line contains a single integer $n$ ( $1<=n<=50$ ) — the number of tasks.

The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{8}$ ), where $a_{i}$ represents the amount of power required for the $i$ -th task.

The third line contains $n$ integers $b_{1},b_{2},...,b_{n}$ ( $1<=b_{i}<=100$ ), where $b_{i}$ is the number of processors that $i$ -th task will utilize.

输出格式

Print a single integer value — the lowest threshold for which it is possible to assign all tasks in such a way that the system will not blow up after the first round of computation, multiplied by 1000 and rounded up.

输入输出样例

输入 #1
6
8 10 9 9 8 10
1 1 1 1 1 1
输出 #1
9000
输入 #2
6
8 10 9 9 8 10
1 10 5 5 1 10
输出 #2
1160
C++ 编辑器
输入
输出