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

建议使用的浏览器:

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

3235:Super Knight

Special Judge 特殊评判
题目描述

A super knight moves in the infinite n-dimensional space. Each move it can perform is described by a vector – a vector (a1, a2, …, an) indicates that a move from the square (with coordinates) (x1, x2, …, xn) to the square (x1 + a1, x2 + a2, …, xn + an) or (x1a1, x2a2, …, xnan) is possible. Each knight has a prescribed set of such vectors, describing the moves this knight can make. For each knight we assume that this knight can reach anywhere in the space if it is allowed (but actually disallowed) to move along a fractional part of a vector.

We say two knights are equivalent, if they can reach exactly the same squares starting from the square (0, 0, …, 0) (by making many moves, perhaps). (Let us point out that equivalent knights may reach these squares in different number of moves). It can be shown that for every knight there exists an equivalent one whose moves are described by only n vectors.

Given a set of  m (m > n) vectors describing the moves of a super knight, determine an equivalent knight as mentioned above.

输入解释

The input contains exactly one test case. The first line of input contains two integers m and n (2 ≤ n < m ≤ 100, n ≤ 10, n · m ≤ 200). The next m lines each contains an integral n-dimensional vector (a1, a2, …, an). It is guaranteed that for all i (1 ≤ i ≤ n) if n = 2, |ai| ≤ 103, otherwise |ai| ≤ 102.

输出解释

Output n n-dimensional vectors describing the moves of an equivalent knight, each on a separate line.

输入样例
3 2
1 0
0 5
0 7
输出样例
1 0
0 1
提示

Do not output any number longer than 50 digits. The test cases are designed that to each one there is a solution not involving any number exceeding 1020 by magnitude.


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

源链接: POJ-3235

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

共提交 0

通过率 --%
时间上限 内存上限
3000 131072