CF388C.Fox and Card Game
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Fox Ciel is playing a card game with her friend Fox Jiro. There are n piles of cards on the table. And there is a positive integer on each card.
The players take turns and Ciel takes the first turn. In Ciel's turn she takes a card from the top of any non-empty pile, and in Jiro's turn he takes a card from the bottom of any non-empty pile. Each player wants to maximize the total sum of the cards he took. The game ends when all piles become empty.
Suppose Ciel and Jiro play optimally, what is the score of the game?
输入格式
The first line contain an integer n ( 1<=n<=100 ). Each of the next n lines contains a description of the pile: the first integer in the line is si ( 1<=si<=100 ) — the number of cards in the i -th pile; then follow si positive integers c1 , c2 , ..., ck , ..., csi ( 1<=ck<=1000 ) — the sequence of the numbers on the cards listed from top of the current pile to bottom of the pile.
输出格式
Print two integers: the sum of Ciel's cards and the sum of Jiro's cards if they play optimally.
输入输出样例
输入#1
2 1 100 2 1 10
输出#1
101 10
输入#2
1 9 2 8 6 5 9 4 7 1 3
输出#2
30 15
输入#3
3 3 1 3 2 3 5 4 6 2 8 7
输出#3
18 18
输入#4
3 3 1000 1000 1000 6 1000 1000 1000 1000 1000 1000 5 1000 1000 1000 1000 1000
输出#4
7000 7000
说明/提示
In the first example, Ciel will take the cards with number 100 and 1, Jiro will take the card with number 10.
In the second example, Ciel will take cards with numbers 2, 8, 6, 5, 9 and Jiro will take cards with numbers 4, 7, 1, 3.