12 2016 档案

摘要:以下链接是本人整理的关于计算机视觉(ComputerVision, CV)相关领域的网站链接,其中有CV牛人的主页,CV研究小组的主页,CV领域的paper,代码,CV领域的最新动态,国内的应用情况等等。打算从事这个行业或者刚入门的朋友可以多关注这些网站,多了解一些CV的具体应用。搞研究的朋友也可以从中了解到很多牛人的研究动态、招生情况等。总之,我认为,知识只有分享才能产生更大的价值,真诚希望下... 阅读全文
posted @ 2016-12-19 09:49 Pumpkin0227 阅读(746) 评论(0) 推荐(0)
摘要:(1)深度优先搜索 (poj2488,poj3083,poj3009,poj1321,poj2251) (2)广度优先搜索(poj3278,poj1426,poj3126,poj3087.poj3414) (3)简单搜索技巧和剪枝(poj2531,poj1416,poj2676,1129) (1)枚 阅读全文
posted @ 2016-12-16 09:01 Pumpkin0227 阅读(290) 评论(0) 推荐(0)
摘要:#include using namespace std; #define SIZE 20 int data[SIZE + 1][SIZE + 1]; int subnet[2][SIZE]; int maxTraffic = 0; int getTraffic(int node, int netNumber, int size){ int ret = 0; for(i... 阅读全文
posted @ 2016-12-08 14:55 Pumpkin0227 阅读(174) 评论(0) 推荐(0)
摘要:迭代变量的选取: 能够唯一描述当前该问题的状态变量 该问题中有两个对应的变量:1.当前摆放到第几行2.摆放的位置 阅读全文
posted @ 2016-12-08 14:48 Pumpkin0227 阅读(122) 评论(0) 推荐(0)
摘要:思路来自于CSDN博客,原作者忘记了 阅读全文
posted @ 2016-12-08 09:08 Pumpkin0227 阅读(160) 评论(0) 推荐(0)
摘要:《Sticks》 代码:(没写完) 阅读全文
posted @ 2016-12-07 16:11 Pumpkin0227 阅读(189) 评论(0) 推荐(0)
摘要:Given a set of sticks of various lengths, is it possible to join them end-to-end to form a square? The first line of input contains N, the number of test cases. Each test case begins with an integer... 阅读全文
posted @ 2016-12-07 16:08 Pumpkin0227 阅读(642) 评论(0) 推荐(0)
摘要:BFS问题,根据原来代码修改一部分即可 阅读全文
posted @ 2016-12-01 11:34 Pumpkin0227 阅读(195) 评论(0) 推荐(0)