编程介的小学生 2017-08-27 08:02 采纳率: 20.5%
浏览 658
已采纳

Imperishable Night

It's the eve of the Harvest Moon Festival in Gensokyo when Flandre Scarlet senses that something is wrong with the moon. It appears that the moon has been replaced by a fake moon. Someone must freeze time and find the real moon to ensure a full moon on the night of the festival. Remilia Scarlet tells her that she must go into the Bamboo Forest of the Lost (迷いの竹林) to investigate and gain enough points to remedy this.

二小姐
Flandre sets off immediately. When she arrives at the entry of the Bamboo Forest of the Lost, she finds that there are n different parts. According to Remilia, there are two kinds of mysterious halidom, ITEM and TIME, that will increase Flandre's points:

When Flandre is at the entry, she can choose any path she hasn't choosed before and collects all ITEM and TIME there, then goes back to the entry.
There are two values, IV (ITEM Value) and TV (TIME Value) relating to how many points Flandre can gain when she collect a piece of ITEM or a piece of TIME.
The initial IV, TV and point of Flandre are all 0.
When she chooses a new part, her IV and TV and point keep the same as the end of he previous collection.
In parti, there are xi pieces of ITEM with value ai and yi pieces of TIME with value bi.
When she collects a piece of ITEM, her point will increase IV (point += IV), and her TV will increase ai (TV += ai) immediately as well.
when she collects a piece of TIME, her point will increase TV (point += TV), and her IV will increase bi (IV += bi) immediately as well.
Obviously, Flandre's IV and TV will be changing when she is collecting ITEM and TIME, thus the order of collection is important. Morever, the order of the parts she chooses is crucial too. Flandre should gain as many points as possible. Your task is to calculate the maximal point Flandre can gain.

Input

The input contains multiple test cases (no more than 100). The first line of each case is an integer n (1 ≤ n ≤ 15), indicating the number of parts of the forest. Then follows n lines, the i-th (1 ≤ i ≤ n) of them contains 4 integers ai, bi, xi, yi (0 ≤ ai, bi ≤ 20, 0 ≤ xi, yi ≤ 30), as described above.

Output

For each case, output the maximal point Flandre can gain in a single line.

Sample Input

1
1 2 1 1
3
2 2 2 2
2 2 2 2
2 2 2 2
Sample Output

2
72

  • 写回答

1条回答 默认 最新

  • devmiao 2017-09-10 04:50
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题