上一页 1 ··· 3 4 5 6 7
摘要: 可以理解为象棋中的马走“日”字形,从第一个位置到第二个位置所需的最短步数,简单的BFS每走一步需判断一次是否到达目标点。由于BFS写得不多,一直用DFS的思维理解,递归写一直溢出、超时~~#include"cstdio"#include"iostream"#include"cstring"#incl... 阅读全文
posted @ 2015-07-23 16:49 Septher 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 题面描述了一种加密的方式,让coder按照要求解密~将字母分成三段,再将位置用数组储存~所谓的旋转其实就是右移~#include"cstdio"#include"iostream"#include"cstring"using namespace std;int main(){ int k1,k2... 阅读全文
posted @ 2015-07-23 16:45 Septher 阅读(200) 评论(0) 推荐(0) 编辑
摘要: #include"cstdio"#include"iostream"#include"cstring"using namespace std;char H[19][10]={"pop","no","zip","zotz","tzec","xul","yoxkin","mol","chen","yax... 阅读全文
posted @ 2015-07-23 16:42 Septher 阅读(129) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7