上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 79 下一页
摘要: rt 阅读全文
posted @ 2015-07-11 13:32 雪溯 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 类名首字母没有大写 阅读全文
posted @ 2015-07-06 09:13 雪溯 阅读(406) 评论(0) 推荐(0) 编辑
摘要: Severalports(8005,8080,8009)requiredbyTomcatv7.0Serveratlocalhostarealreadyinuse.Theservermayalreadyberunninginanotherprocess,orasystemprocessmaybeusi... 阅读全文
posted @ 2015-07-02 17:58 雪溯 阅读(2066) 评论(0) 推荐(0) 编辑
摘要: 问题如图因为机子是64位的,jre和jdk以及以前的eclipse则是32位的,所以猜想需要64位的jdk,下载配置jdk7,然而改变java_home和path并没有什么用,所以直接把jdk1.8.0_40文件夹里面的内容换成jdk7(64位)的. 阅读全文
posted @ 2015-07-02 17:06 雪溯 阅读(1288) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=3009如果目前起点紧挨着终点,可以直接向终点滚(终点不算障碍)#include #include using namespace std;const int maxn = 21;int maz[maxn][maxn];int n,m;const ... 阅读全文
posted @ 2015-06-05 21:55 雪溯 阅读(154) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=1979#include #include using namespace std;const int maxn = 21;bool vis[maxn][maxn];char maz[maxn][maxn];int n,m;const int dx... 阅读全文
posted @ 2015-06-05 21:20 雪溯 阅读(128) 评论(0) 推荐(0) 编辑
摘要: kruskal思想,排序后暴力枚举从任意边开始能够组成的最小生成树#include #include using namespace std;const int maxn = 101;const int maxe = maxn * maxn / 2;struct edge{ int f,t,c... 阅读全文
posted @ 2015-05-23 20:00 雪溯 阅读(117) 评论(0) 推荐(0) 编辑
摘要: http://hihocoder.com/problemset/problem/1138很久不用最短路,几乎连基本性质也忘了,结果这道题就是某些最短路算法空间复杂度是o(n)这里总结四种算法算法名称 时间复杂度 空间复杂度dijkstra+heap O(elog(e+n)) O(n)bellman... 阅读全文
posted @ 2015-05-20 00:01 雪溯 阅读(650) 评论(0) 推荐(0) 编辑
摘要: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4842要注意题目中两点:1.在踏入妖怪控制的区域那一刹那,先减行动力,然后才能杀妖怪2.在妖怪控制区域行动力也会恢复3.妖怪也许不在自己的控制区域#include #include... 阅读全文
posted @ 2015-05-17 16:34 雪溯 阅读(161) 评论(0) 推荐(0) 编辑
摘要: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4835由题意,有:(x1-x11)^2 + (x2-x12)^2 ... = D[1]^2(x1-x21)^2 + (x2-x22)^2 ... = D[2]^2...(x1-x1... 阅读全文
posted @ 2015-05-17 12:28 雪溯 阅读(153) 评论(0) 推荐(0) 编辑
上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 79 下一页