题意为给出两个四位素数A、B,每次只能对A的某一位数字进行修改,使它成为另一个四位的素数,问最少经过多少操作,能使A变到B。可以直接进行BFS搜索 ...
分类:
其他好文 时间:
2017-01-07 00:00:24
阅读次数:
399
Description 给定一个二叉查找树,要求计算其高度,每个二叉查找树将给出先序与中序的遍历。 例如:一个二叉查找树其先序遍历为:16, 10, 4, 15, 23 ; 中序遍历为 4, 10, 15, 16, 23,则其高度为2(假定空树高度为-1,只有根节点的数高度为0) 给定一个二叉查找树 ...
分类:
其他好文 时间:
2016-12-21 20:26:49
阅读次数:
167
#include<iostream> #include<string> #include<string.h> using namespace std; char message[20][200]; int main() { string msg; int col; while(cin>>col&&c ...
分类:
其他好文 时间:
2016-10-22 14:51:37
阅读次数:
265
Description 你有一些小球,从左到右依次编号为1,2,3,...,n. 你可以执行两种指令(1或者2)。其中, 1 X Y表示把小球X移动到小球Y的左边, 2 X Y表示把小球X移动到小球Y右边。 指令保证合法,即X不等于Y。 例如,初始状态1,2,3,4,5,6的小球执行1 1 4后,小 ...
分类:
移动开发 时间:
2016-07-10 13:52:34
阅读次数:
312
Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description Long long ago, there was a super computer that could deal with VeryLongIntegers(no Ver ...
分类:
其他好文 时间:
2016-06-29 01:12:16
阅读次数:
199
这里收集了sicily的陈炬桦老师编译原理实验课程的题目,曝上代码以供参考。 (如果这里的代码对您的思路有些许启发的话,请您点击一下推荐,给予作者写作的鼓励,不胜感谢!) 1-词法分析 题目1000:View Code AC代码:View Code 题目1001:View Code AC代码:Vie ...
分类:
其他好文 时间:
2016-05-17 16:09:23
阅读次数:
3107
1001. Alphacode
Constraints
Time Limit: 1 secs, Memory Limit: 32 MB
Description
Alice and Bob need to send secret messages to each other and are discussing ways to encode theirmessages: Alice: ...
分类:
其他好文 时间:
2016-05-13 02:36:30
阅读次数:
188
Description
You are given a car odometer which displays the miles traveled as an integer. The odometer has a defect, however: it proceeds from the digit 3 to the digit 5, always skipping over the dig...
分类:
其他好文 时间:
2016-05-12 16:08:32
阅读次数:
135
使用筛选法求解素数,使用遍历方法寻找解的个数...
分类:
其他好文 时间:
2016-05-12 14:52:28
阅读次数:
140