#ABC165C. Many Requirements
Many Requirements
题目描述
Given are positive integers , , , and quadruples of integers ( , , , ).
Consider a sequence satisfying the following conditions:
- is a sequence of positive integers.
- .
Let us define a score of this sequence as follows:
- The score is the sum of over all indices such that . (If there is no such , the score is .)
Find the maximum possible score of .
给出正整数 , , , 的四倍整数 ( , , , )。
考虑满足以下条件的序列 :
- 是一个由 个正整数组成的序列。
- .
我们对这个序列的分数定义如下
- 分数是 的所有索引 中 的总和。(如果没有 ,则得分为 )。
求 的最大可能得数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印最大可能得分 。
样例 #1
样例输入 #1
3 4 3
1 3 3 100
1 2 2 10
2 3 2 10
样例输出 #1
110
样例 #2
样例输入 #2
4 6 10
2 4 1 86568
1 4 0 90629
2 3 0 90310
3 4 1 29211
3 4 3 78537
3 4 2 8580
1 2 1 96263
1 4 2 2156
1 2 0 94325
1 4 3 94328
样例输出 #2
357500
样例 #3
样例输入 #3
10 10 1
1 10 9 1
样例输出 #3
1
说明
数据规模与约定
- 所有输入值均为整数。
- ( )
- ( )
- (其中 )
- ( )
样例 解释
当 时,它的得分是 。在这些条件下,没有序列的得分大于 ,因此答案是 。