当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

2596:Dice Stacking

题目描述
Small John is playing a dice stacking game. Six faces of a die are squares of the same size; each face of a die has a number range from 1 to 6.

The dice game is to stack several dice up with arbitrary order. You must keep the following rule: For each pair of consecutive dice, the number on the bottom of the top die must match the number on the top of the bottom die. In other words, the two faces that are together must have the same number.

Then a long rectangular pillar, which has 4 sides, is created. We are trying to make one side have the maximum sum. (Note that after we rotate a die to fix the top face and bottom face, we can still rotate the die by 90, 180, or 270 degrees.) Write a program to find the maximum sum that one side can have.
输入解释
The first line of the input contains a single integer t, the number of test cases, followed by the input data for each test case. The first line for each test case contains an integer n (1 <= n <= 10), the number of dice. In the next lines, each line contains six integers for a die, by the order A, B, C, D, E, F, as in the following figure. There is a single space between two numbers.
输出解释
There should be one line per test case, which contains the maximum sum of the numbers in one side. If you cannot stack all the dice up, simply output 0 in a line.
输入样例
1
5
2 3 1 6 5 4
3 1 2 4 6 5
5 6 4 1 3 2
1 3 6 2 4 5
4 1 6 5 2 2
输出样例
30

该题目是Virtual Judge题目,来自 北京大学POJ

源链接: POJ-2596

最后修改于 2020-10-29T06:36:41+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
1000 65536