CF1176F.Destroy it!
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are playing a computer card game called Splay the Sire. Currently you are struggling to defeat the final boss of the game.
The boss battle consists of n turns. During each turn, you will get several cards. Each card has two parameters: its cost ci and damage di . You may play some of your cards during each turn in some sequence (you choose the cards and the exact order they are played), as long as the total cost of the cards you play during the turn does not exceed 3 . After playing some (possibly zero) cards, you end your turn, and all cards you didn't play are discarded. Note that you can use each card at most once.
Your character has also found an artifact that boosts the damage of some of your actions: every 10 -th card you play deals double damage.
What is the maximum possible damage you can deal during n turns?
输入格式
The first line contains one integer n ( 1≤n≤2⋅105 ) — the number of turns.
Then n blocks of input follow, the i -th block representing the cards you get during the i -th turn.
Each block begins with a line containing one integer ki ( 1≤ki≤2⋅105 ) — the number of cards you get during i -th turn. Then ki lines follow, each containing two integers cj and dj ( 1≤cj≤3 , 1≤dj≤109 ) — the parameters of the corresponding card.
It is guaranteed that i=1∑nki≤2⋅105 .
输出格式
Print one integer — the maximum damage you may deal.
输入输出样例
输入#1
5 3 1 6 1 7 1 5 2 1 4 1 3 3 1 10 3 5 2 3 3 1 15 2 4 1 10 1 1 100
输出#1
263
说明/提示
In the example test the best course of action is as follows:
During the first turn, play all three cards in any order and deal 18 damage.
During the second turn, play both cards and deal 7 damage.
During the third turn, play the first and the third card and deal 13 damage.
During the fourth turn, play the first and the third card and deal 25 damage.
During the fifth turn, play the only card, which will deal double damage ( 200 ).