A15800 | Playing in a Casino
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Galaxy Luck, a well-known casino in the entire solar system, introduces a new card game.In this game, there is a deck that consists of $n$ cards. Each card has $m$ numbers written on it. Each of the $n$ players receives exactly one card from the deck.
Then all players play with each other in pairs, and each pair of players plays exactly once. Thus, if there are, for example, four players in total, then six games are played: the first against the second, the first against the third, the first against the fourth, the second against the third, the second against the fourth and the third against the fourth.
Each of these games determines the winner in some way, but the rules are quite complicated, so we will not describe them here. All that matters is how many chips are paid out to the winner. Let the first player's card have the numbers $a_1, a_2, \dots, a_m$ , and the second player's card — $b_1, b_2, \dots, b_m$ . Then the winner of the game gets $|a_1 - b_1| + |a_2 - b_2| + \dots + |a_m - b_m|$ chips from the total pot, where $|x|$ denotes the absolute value of $x$ .
To determine the size of the total pot, it is necessary to calculate the winners' total winnings for all games. Since there can be many cards in a deck and many players, you have been assigned to write a program that does all the necessary calculations.
输入格式
Each test consists of several test cases. The first line contains one integer $t$ ( $1 \le t \le 1000$ ) — the number of test cases. The description of the test cases follows.
The first line of each test case contains two integers $n$ and $m$ ( $1 \le n \cdot m \le 3\cdot 10^5$ ) — the number of cards in the deck and the count of numbers on the one card.
Each of the following $n$ lines of the test case set contains $m$ integers $c_{i,j}$ ( $1 \le c_{i,j} \le 10^6$ ) — a description of the $i$ -th card.
It is guaranteed that the total $n \cdot m$ in all tests does not exceed $3 \cdot 10^5$ .
The first line of each test case contains two integers $n$ and $m$ ( $1 \le n \cdot m \le 3\cdot 10^5$ ) — the number of cards in the deck and the count of numbers on the one card.
Each of the following $n$ lines of the test case set contains $m$ integers $c_{i,j}$ ( $1 \le c_{i,j} \le 10^6$ ) — a description of the $i$ -th card.
It is guaranteed that the total $n \cdot m$ in all tests does not exceed $3 \cdot 10^5$ .
输出格式
For each test case, print one number — the total amount of winnings from all games.
输入输出样例
输入 #1
3 3 5 1 4 2 8 5 7 9 2 1 4 3 8 5 3 1 1 4 4 15 1 10 4 3 1 2 3 3 2 1 1 2 1 4 2 7
输出 #1
50 0 31
Consider the first test case.
In the game between the first and second player, the winner receives $|1-7| + |4-9| + |2-2| + |8-1| + |5-4| = 19$ chips.
In the game between the first and third player, the winner receives $|1-3| + |4-8| + |2-5| + |8-3| + |5-1| = 18$ in chips.
In the game between the second and third player, the winner receives $|7-3| + |9-8| + |2-5| + |1-3| + |4-1| = 13$ chips.
The total is $19 + 18 + 13 = 50$ chips.
In the game between the first and second player, the winner receives $|1-7| + |4-9| + |2-2| + |8-1| + |5-4| = 19$ chips.
In the game between the first and third player, the winner receives $|1-3| + |4-8| + |2-5| + |8-3| + |5-1| = 18$ in chips.
In the game between the second and third player, the winner receives $|7-3| + |9-8| + |2-5| + |1-3| + |4-1| = 13$ chips.
The total is $19 + 18 + 13 = 50$ chips.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?