码迷,mamicode.com
首页 >  
搜索关键字:简单搜索    ( 173个结果
[kuangbin带你飞]专题一 简单搜索 - A - 棋盘问题
1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 struct node 8 { 9 int x;10 int y;11 };12 int n, k, l, ans;13 ...
分类:其他好文   时间:2015-01-27 18:15:23    阅读次数:147
【HDOJ】1987 Decoding
简单搜索。 1 /* hdoj 1987 */ 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 9 char s[505];10 char map[25][25];11 boo...
分类:其他好文   时间:2015-01-26 22:17:16    阅读次数:219
hdu 1547 搜索题
简单搜索...
分类:其他好文   时间:2015-01-19 19:10:52    阅读次数:140
[kuangbin带你飞]专题一 简单搜索
一直拖、放了放久、受不了A -棋盘问题Time Limit:1000MSMemory Limit:10000KB64bit IO Format:%I64d & %I64uSubmitStatusDescription在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别。要求摆放时任意...
分类:其他好文   时间:2014-12-30 23:24:52    阅读次数:1766
紫书p199 八连块(BFS,hash)
八连块问题  紫书上的简单搜索  渣渣好久才弄懂 #include #include using namespace std; const int M = 1000003; int x[4] = { -1, 1, 0, 0}, y[4] = {0, 0, -1, 1}; int dis[M], h[M], s[M][9], e[9]; int aton(int a[]) { int t...
分类:其他好文   时间:2014-12-18 12:01:30    阅读次数:169
HDU 3974 Assign the task 简单搜索
根据Rex 的思路才知道可以这么写。题目意思还是很好理解的,就是找到当前雇员最近的任务。做法是,可以开辟一个 tim 变量,每次有雇员得到昕任务时候 ++tim然后取寻找最近的任务的时候写一个搜索就可以核心代码: while(num != -1){ ...
分类:其他好文   时间:2014-12-14 22:33:04    阅读次数:125
(一)简单搜索
1界面1.1抓图:原则: 简化,直观,说明问题,有用 1.2说明:1 对指定文件夹创建索引2 输入关键词,显示查询结果2 实现2.1 创建button1_Click方法://对制定文件夹建立索引 private void button1_Click(object s...
分类:其他好文   时间:2014-12-14 13:10:48    阅读次数:215
hdu1312
//简单搜索,只要走遍所有可达的路径BFS版:#include "iostream"#include "cstdio"#include "memory.h"#include "queue"using namespace std;const int MAX = 22;const int dx[] = ...
分类:其他好文   时间:2014-12-07 20:18:22    阅读次数:180
log4j配置相对路径实现日志记录
从网上简单搜索了一下,发现有三种介绍的方法。总结在这里1.解决的办法自然是想办法用相对路径代替绝对路径,其实log4j的FileAppender本身就有这样的机制,如:log4j.appender.logfile.File=${WORKDIR}/logs/app.log其中“${WORKDIR}/”...
分类:其他好文   时间:2014-11-27 16:10:23    阅读次数:146
hdu2102 (dfs)搜索水题
简单搜索...
分类:其他好文   时间:2014-11-25 23:48:28    阅读次数:202
173条   上一页 1 ... 14 15 16 17 18 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!