首页 > 2016年03月16日 > 全部分享
lintcode-medium-Combination Sum II
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in Cwhere the candidate numbers sums to T. Each numb
分类:其他   时间:2016-03-16 07:14:37    收藏:0  评论:0  赞:0  阅读:220
bzoj 1856: [Scoi2010]字符串
卡特兰数答案为C(n+m,m-1)
分类:其他   时间:2016-03-16 07:14:26    收藏:0  评论:0  赞:0  阅读:256
python类库26[web2py之基本概念]
一 web2py的应用的执行环境Models,Controllers和views所在的执行环境中,以下对象已经被默认地导入: Global Objects: request,response,session,cache Navigation: redirect,HTTP Internationali
分类:编程语言   时间:2016-03-16 07:14:17    收藏:0  评论:0  赞:0  阅读:150
bzoj 1834: [ZJOI2010]network 网络扩容
一遍最大流,一遍费用流。第一问跑完之后在残余网络建边,单位费用为扩容费用,
分类:Web开发   时间:2016-03-16 07:13:56    收藏:0  评论:0  赞:0  阅读:224
java@ What are C++ features missing in Java
Following features of C++ are not there in Java. No pointers No sizeof operator No scope resolution operatorLocal variables in functions cannot be sta
分类:编程语言   时间:2016-03-16 07:13:46    收藏:0  评论:0  赞:0  阅读:201
lintcode-medium-Coins in a Line II
There are n coins with different value in a line. Two players take turns to take one or two coins from left side until there are no more coins left. T
分类:其他   时间:2016-03-16 07:13:36    收藏:0  评论:0  赞:0  阅读:235
bzoj 1833: [ZJOI2010]count 数字计数
数位DP,先预处理,a[i][j]代表有i位,最高位为j的各数字和。
分类:其他   时间:2016-03-16 07:13:26    收藏:0  评论:0  赞:0  阅读:233
bzoj 1877: [SDOI2009]晨跑
不能相交,拆点费用流。
分类:其他   时间:2016-03-16 07:13:16    收藏:0  评论:0  赞:0  阅读:164
bzoj 1878: [SDOI2009]HH的项链
将读入离线处理,先排序,树状数组维护。
分类:其他   时间:2016-03-16 07:13:07    收藏:0  评论:0  赞:0  阅读:145
bzoj 1818: [Cqoi2010]内部白点
将点拆成横线与点,用树状数组维护。
分类:其他   时间:2016-03-16 07:12:57    收藏:0  评论:0  赞:0  阅读:192
bzoj 1821: [JSOI2010]Group 部落划分 Group
并查集,每次把最近的两个点合并,直到只有k个块。
分类:Web开发   时间:2016-03-16 07:12:46    收藏:0  评论:0  赞:0  阅读:238
algorithm@ Divide two integers without using multiplication, division and mod operator. (Bit Operation)
分类:其他   时间:2016-03-16 07:12:27    收藏:0  评论:0  赞:0  阅读:218
实现Ogre的脚本分离 - 天龙八部的源码分析(一)
在研究天龙八部游戏的源码之时, 发现 Ogre 材质的模板部分被单独放在一个 material 文件之内, 继承模板的其他材质则位于另外的文件, 当我使用Ogre 官方源码, 加载脚本时其不会查找位于其他material文件内的基模板, 因此导致继承的材质部分加载失败. 举例, 脚本文件"女主角_脸
分类:其他   时间:2016-03-16 07:12:16    收藏:0  评论:0  赞:0  阅读:157
linux mysql操作
Start tomcat server: sudo /var/local/apache-tomcat-8.0.23/bin/startup.sh Stop tomcat server: sudo /var/local/apache-tomcat-8.0.23/bin/shutdown.sh Acce
分类:数据库技术   时间:2016-03-16 07:11:59    收藏:0  评论:0  赞:0  阅读:238
Atitit  hre框架v5 新特性  HREv5
Atitit hre框架v5 新特性 HREv5 1. V5新特性 apiurl2="/wrmiServlet";1 2. V1 新特性1 3. V2 新特性 添加php版1 4. V3 新特性 callback_checkJavaEx(data);1 5. V4 新特性1 基础实现 <script
分类:其他   时间:2016-03-16 07:11:47    收藏:0  评论:0  赞:0  阅读:285
how to download image from any web page in java 下载图片
http://stackoverflow.com/questions/5882005/how-to-download-image-from-any-web-page-in-java See javax.imageio package for more info. That's using the A
分类:编程语言   时间:2016-03-16 07:11:27    收藏:0  评论:0  赞:0  阅读:295
检测用户是否具有administrator权限
检测用户是否具有administrator权限const SECURITY_NT_AUTHORITY: TSIDIdentifierAuthority = (Value: (0, 0, 0, 0, 0, 5)); SECURITY_BUILTIN_DOMAIN_RID = $00000020; DO
分类:其他   时间:2016-03-16 07:11:16    收藏:0  评论:0  赞:0  阅读:135
[转载]C++中引用与指针的区别(详细介绍)
本文转载自http://www.cnblogs.com/tracylee/archive/2012/12/04/2801519.html string s("xyzzy"); string& rs = s; // 正确,rs指向s 指针没有这样的限制。 string *ps; // 未初始化的指针
分类:编程语言   时间:2016-03-16 07:11:08    收藏:0  评论:0  赞:0  阅读:236
CentOS7安装mysql5.7.11
开始安装 修改配置文件 安装个selinux工具 安装或初始化数据库(谨慎!!!) 开通远程管理权限
分类:数据库技术   时间:2016-03-16 07:10:56    收藏:0  评论:0  赞:0  阅读:290
LeetCode Restore IP Addresses
DFS
分类:其他   时间:2016-03-16 07:10:36    收藏:0  评论:0  赞:0  阅读:235
1603条   上一页 1 ... 59 60 61 62 63 ... 81 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!