码迷,mamicode.com
首页 >  
搜索关键字:wall    ( 568个结果
Makefile 编译静态库
CC = gccAR = arFLAGS = -Wall -lpthreadCLOUD = cloud_serverOBJ += cloud_server.oLIB = libccloud.aLIBOBJ = cloud_client.oLIBSRC = cloud_client.call: $(L...
分类:其他好文   时间:2015-08-20 18:13:42    阅读次数:114
【暑假】[深入动态规划]UVa 10618 Fixing the Great Wall
UVa 10618Fixing the Great Wall题目:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=36139思路:数轴上有n个点需要修复,每个点有信息c,x,d 表示位于x且在t时修缮的费用是c+d*t,找一个修...
分类:其他好文   时间:2015-08-19 00:12:24    阅读次数:221
UVA5876 Writings on the Wall 扩展KMP
扩展KMP的简单题。#include#include#define maxn 51010char s[maxn],t[maxn];int extand[maxn],next[maxn];void getnext(char *t){ int i,k,j,len=strlen(t); nex...
分类:其他好文   时间:2015-08-18 08:58:40    阅读次数:120
【分块】 HDU 4391 Paint The Wall
通道题意:区间涂色,询问区间内颜色相同的个数思路:将原区间划分乘sqrt(n)个区间,每次暴力查询和跟新两边的区间,中间的区间直接用hash存每种颜色的节点的数量。这里用到了类似线段树的lazy思想,区间成段修改直接打个标记,等到要划分这个区间的时候先把标记传下去,然后更新代码:#include #...
分类:其他好文   时间:2015-08-17 13:56:56    阅读次数:177
gcc编辑器的一些常用选项
gcc编辑器的一些常用选项- -o:指定生成的文件名,未指定默认为a.out。 - -g:编译后可以进行gdb调试。 - -c:调试core文件(程序的内存映像文件,包含程序运行失败的那个时刻的全局变量)。 - -Wall:启用大部分gcc警告选项,对保持代码清洁很有用。 - -pedatic:保持代码的可移植。 - -D:用于命令行定义。 - -DDEBUG:在程序中包含额外的调试代码...
分类:其他好文   时间:2015-08-15 16:33:54    阅读次数:117
Fire Net HDU杭电1045【DFS】
Problem Description Suppose that we have a square city with straight streets. A map of a city is a square board with n rows and n columns, each representing a street or a piece of wall.  A block...
分类:Web程序   时间:2015-08-13 18:14:34    阅读次数:104
poj1113 Wall 凸包
DescriptionOnce upon a time there was a greedy King who ordered his chief Architect to build a wall around the King’s castle. The King was so greedy, that he would not listen to his Architect’s proposa...
分类:其他好文   时间:2015-08-07 22:27:06    阅读次数:160
JFinal配置durid
1、在configPlugin中配置以下代码 // DruidPlugin ??DruidPlugin dp = new DruidPlugin(url, username, password, "com.mysql.jdbc.Driver"); ??dp.addFilter(new StatFilter()); ??WallFilter wall = new...
分类:其他好文   时间:2015-08-07 11:40:18    阅读次数:129
Linux和windows下的shutdown命令
Linux下的shutdown命令shutdown [options] [time] [wall]options: --help 获取帮助 -h 关机 -r 重启 ...
分类:Windows程序   时间:2015-08-07 01:49:17    阅读次数:150
hdu 3468 Treasure Hunting
二分图匹配题意: 。。。 看了半天我们可以从rally点出发到最近的rally点, 如果有treasure在这两个rally点的最短路径上, 我们可以拿走他。思路也可以参见http://blog.csdn.net/wall_f/article/details/8990937这种分析问题的思路太值得学...
分类:其他好文   时间:2015-08-04 00:27:01    阅读次数:99
568条   上一页 1 ... 34 35 36 37 38 ... 57 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!