

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
巻シリーズの漫画があり、 巻目は 円で買うことができます。
また、この漫画はセットで買うこともできます。セットは 種類あり、 種類目は 円で、シリーズの 巻目、 巻目、、 巻目を買うことができます。
巻全てを 冊以上手に入れるためには、最小で何円支払う必要があるか求めてください。
制約
- 入力は全て整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
5 3 5 4 6 2 3 4 1 2 7 2 4 14 2 5
出力例 1Copy
14
次のようにすると 円で 巻全てを 冊以上手に入れることができます。これが最小です。
- 円で 種類目のセットを買う。 巻目および 巻目を手に入れる。
- 円で 種類目のセットを買う。 巻目、 巻目、 巻目を手に入れる。
- 円で 巻目を買う。
入力例 2Copy
6 3 3 1 4 1 5 9 3 1 2 12 4 6 10 3 4
出力例 2Copy
19
Score : points
Problem Statement
There is a series of manga consisting of books. The -th () book is sold for yen.
These books are also sold in sets. There are sets, the -th () of which is sold for yen and contains the -th, -th, , -th books of the series.
At least how many yen does one have to pay to get at least one of each of the books?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer as an integer.
Sample Input 1Copy
5 3 5 4 6 2 3 4 1 2 7 2 4 14 2 5
Sample Output 1Copy
14
One can get at least one of each of the books for yen as follows. This is the minimum one has to pay.
- Buy the -st set for yen to get the -st and -nd books.
- Buy the -nd set for yen to get the -nd, -rd, and -th books.
- Buy the -th book for yen.
Sample Input 2Copy
6 3 3 1 4 1 5 9 3 1 2 12 4 6 10 3 4
Sample Output 2Copy
19