码迷,mamicode.com
首页 >  
搜索关键字:volume    ( 1585个结果
hdu 2602 Bone Collector (01 背包基础)
http://acm.hdu.edu.cn/showproblem.php?pid=2602题意 : n个骨头 m的容量 给出n个骨头的 value 和 volume 求m能容纳的最大价值思路 : dp[j]=max(dp[j],dp[j-w[i]]+v[i]);#include#i...
分类:其他好文   时间:2015-01-30 17:12:07    阅读次数:174
C++ this指针 全部
在每一个成员函数中都包含一个特殊的指针,这个指针的名字是固定的。叫做this。它是指向本类对象的指针,它的值是当前被调用的成员函数所在的对象的起 始地址。例如:当调用成员函数a.volume时,编译系统就把对像a的起始地址赋给this指针,于是在成员函数引用数据成员时,就按照this的指向找...
分类:编程语言   时间:2015-01-29 11:50:22    阅读次数:127
UVA FILL(BFS + 优先队列)
Problem D FILL   There are three jugs with a volume of a, b and c liters. (a, b, and c are positive integers not greater than 200). The first and the second jug are initially empty, while the...
分类:其他好文   时间:2015-01-28 09:46:17    阅读次数:275
C++静态成员
本文地址:http://www.cnblogs.com/archimedes/p/cpp-static2.html,转载请注明源地址静态数据成员定义:以关键字static声明的数据成员class Box{public: int volume() const;private: int iw...
分类:编程语言   时间:2015-01-28 00:41:01    阅读次数:208
UC分析-武器系统之子弹获取
UC的主角是一个左手拿刀,右手拿枪,自带时间控制BUFF的高手,有枪就得有子弹,UC中获取子弹有三种方式 LevelBP里设置子弹 捡起ShotGun时会给两发子弹,最常用的是在一个箱子里呆着,会最高给3发子弹, 这也是要分析的一种给子弹方式,这个盒子是一个普通的BP,带有一个Volume在层次结构...
分类:其他好文   时间:2015-01-25 16:37:30    阅读次数:161
LightOj 1074 Extended Traffic (spfa+负权环)
题目链接: http://lightoj.com/volume_showproblem.php?problem=1074题目大意: 有一个大城市有n个十字交叉口,有m条路,城市十分拥挤,因此每一个路都有一个拥挤度,政府就出台了一个政策,对每一条路收取过路费,收取标准为(终点拥挤度- 起点拥挤度).....
分类:其他好文   时间:2015-01-22 17:19:46    阅读次数:249
lingo解决6个发点8个收点的最小运输费用问题
使用LINGO 软件计算6 个发点8 个收点的最小费用运输问题。产销单位运价如下表 使用lingo编程 model: !6 发点8 收点运输问题; sets: warehouses/wh1..wh6/: capacity; vendors/v1..v8/: demand; links(warehouses,vendors): cost, volume; endsets !目标函...
分类:其他好文   时间:2015-01-21 22:38:52    阅读次数:2097
Marching Cube
GPU-Marching-CubesAn Implementation of the Marching Cubes[1] AlgorithmMarching Cubes MatlabThe Standford Volume Data ArchiveBrainWeb: Simulated Brain ...
分类:其他好文   时间:2015-01-21 07:47:04    阅读次数:142
(简单) POJ 3414 Pots,BFS+记录路径。
Description You are given two pots, having the volume of A and B liters respectively. The following operations can be performed:FILL(i) fill the po...
分类:其他好文   时间:2015-01-16 23:42:44    阅读次数:176
Oracle 11g服务详细介绍及哪些服务是必须开启的?
按照windows 7 64位 安装oracle 11g R2中的方法成功安装Oracle 11g后,共有7个服务,这七个服务的含义分别为: 1. Oracle ORCL VSS Writer Service:Oracle卷映射拷贝写入服务,VSS(Volume Shadow Copy Servic...
分类:数据库   时间:2015-01-16 16:02:57    阅读次数:188
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!