Most of these Diesel-engined wristwatches wall socket available for purchase are designed when using the similar premium quality products which the or...
分类:
其他好文 时间:
2015-08-03 16:21:32
阅读次数:
156
cmake_minimum_required(VERSION 2.8.2 FATAL_ERROR)project("ProjName")// 不推荐使用add_definitions来设置编译选项,作用如同cmake -D
add_definitions(
-std=c++11 # Or -std=c++0x
-Wall
-Wfatal-errors
# Other...
分类:
其他好文 时间:
2015-07-31 12:57:34
阅读次数:
131
Robert is a famous engineer. One day he was given a task by his boss. The background of the task was the following:
Given a map consisting of square blocks. There were three kinds of blocks: Wall,...
分类:
其他好文 时间:
2015-07-29 12:21:07
阅读次数:
147
【问题】:项目迁移时,原来在suse上正常的代码在centos上报错:g++ -g -Wall -fPIC -I../include -I./ -I../src -I/share/comm_ext -I/home/appadmin/workspace/comm/export_include/ -I/...
分类:
其他好文 时间:
2015-07-27 12:29:08
阅读次数:
354
Gerald is into ArtGerald bought two very rare paintings at the Sotheby's auction and he now wants to hang them on the wall. For that he bought a speci...
分类:
其他好文 时间:
2015-07-26 19:11:04
阅读次数:
101
/*
题意:
求得n个点的凸包,然后求与凸包相距l的外圈的周长。
答案为n点的凸包周长加上半径为L的圆的周长
*/
# include
# include
# include
# include
using namespace std;
# define PI acos(-1.0)
struct node
{
int x;
int y;
};
node a[1...
分类:
其他好文 时间:
2015-07-24 20:53:37
阅读次数:
119
题意:有一个n*n的墙,现在小明来刷墙,如果每一行每一列都至少有一个格子刷过了就停止工作,否则每次随机选一个格子,如果刷过了就不刷如果没刷过就刷,然后休息一分钟,求停止工作时时间的数学期望(开始之前已经有m个格子刷过了)
分析:概率dp
状态:dp[i][j]表示还有i行j列没刷,则它能转移到的状态是dp[i][j],dp[i-1][j-1],dp[i][j-1],dp[i-1][j-1]
...
分类:
其他好文 时间:
2015-07-24 18:35:52
阅读次数:
126
后台php代码返回获取内容的值 $imginfo?=?$upload->getUploadFileInfo?();
$wall_img?=?$imginfo?[0]?[‘savepath‘]?.?$imginfo?[0]?[‘savename‘];
$array=array(
‘wall_img‘=>$wall_img,
...
分类:
Web程序 时间:
2015-07-21 17:28:15
阅读次数:
138
本题极为经典,是动态规划中“未来费用”的计算, 因为起点固定且维修时间忽略,所以任意时间已经修复的点一定是一个连续的区间 。因此我们用d[i][j][k]表示已经修理完区间[i,j]
且现在正在点k ,如果k为0,在i点,如果k为1,在j点。这显然已经可以表示所有状态,那么怎么维护时间这个量呢? 我们可以发现,每过t时间,没有维修的点都将增加费用,所以我们不妨先预处理求出每个区间的d值只和,然...
分类:
其他好文 时间:
2015-07-20 23:44:32
阅读次数:
153
在cmake中要编译debug模式的话,在CMakeLists.txt中添加如下两行 (不写就用默认的值) SET(CMAKE_CXX_FLAGS_DEBUG?"$ENV{CXXFLAGS}?-O0?-Wall?-g?-ggdb?")
SET(CMAKE_CXX_FLAGS_RELEASE?"${ENV{CXXFLAGS}?...
分类:
其他好文 时间:
2015-07-19 23:55:52
阅读次数:
1864