Enumeration
文章平均质量分 73
bingsanchun
这个作者很懒,什么都没留下…
展开
-
poj1657——Distance on Chessboard
原题: Description 国际象棋的棋盘是黑白相间的8 * 8的方格,棋子放在格子中间。如下图所示: 王、后、车、象的走子规则如下: 王:横、直、斜都可以走,但每步限走一格。 后:横、直、斜都可以走,每步格数不受限制。 车:横、竖均可以走,不能斜走,格数不限。 象:只能斜走,格数不限。 写一个程序,给定起始位置和目标位置,计算王、后、车、象从起始原创 2013-03-29 18:07:48 · 960 阅读 · 0 评论 -
poj1753——Flip Game
原题: Description Flip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 squares. One side of each piece is white and the other one is black and each piece is ly原创 2013-03-28 22:53:13 · 996 阅读 · 0 评论 -
省赛热身赛之——Yet Another Story of Rock-paper-scissors
原题: Description Akihisa and Hideyoshi were lovers. They were sentenced to death by the FFF Inquisition. Ryou, the leader of the FFF Inquisition, promised that the winner of Rock-paper-scissors原创 2013-04-25 18:52:00 · 1379 阅读 · 0 评论 -
简 单 枚 举
输入正整数n,按从小到大的顺序输出所有形如abcde/fghij=n的表达式,其中a~j恰好为数字0~9的一个排列,2≤n≤79。 样例输入: 62 样例输出: 79546/01283=62 94736/01528=62 【分析】 只需要枚举fghij就可以计算出abcde,然后判断是否所有数字都不相同即可。不仅程序简单,而枚举量也从10!=3628800降低至不到1万。 #inc原创 2013-08-07 19:16:51 · 1049 阅读 · 0 评论