# 声明要求的 cmake 最低版本cmake_minimum_required(VERSION 2.8)# 声明一个 cmake 工程project(helloSLAM)# 设置编译模式set( CMAKE_BUILD_TYPE "Debug" )# 共享库add_library(hello_sh ...
分类:
编程语言 时间:
2018-12-29 23:23:36
阅读次数:
290
There are N workers. The i-th worker has a quality[i] and a minimum wage expectation wage[i]. Now we want to hire exactly K workers to form a paid gro ...
分类:
其他好文 时间:
2018-12-24 23:36:45
阅读次数:
215
一、题面 题目链接 二、分析 该题注意读题的时候有强调边的权值为非负(即可以为0),此题就是求树两个叶子节点之间的最短距离。为了使两个叶子节点之间的距离最短,那么其实就是让每个最后到叶子的那条路径尽量去平摊更多的权值,因为只有这样才能保证最长的哪个路径值是最小的。相当于除了到叶子的路径,其他路径权值 ...
分类:
其他好文 时间:
2018-12-24 23:35:38
阅读次数:
172
题目如下: Given a set of points in the xy-plane, determine the minimum area of a rectangle formed from these points, with sides parallel to the x and y ax ...
分类:
其他好文 时间:
2018-12-24 13:51:58
阅读次数:
223
link 题目大意 有$n$个点的前边权为$0$的树,你要加入$S$边权总量,可以为分数,使得当前树的直径最小。 题目分析 题目过于毒瘤,导致于最后$1$个小时一直在做此题,没想到真的只是一个结论一样的东西。 我们不要想十分复杂,我们发现数的直径两端都会在度数为$1$的点上,就是叶子节点。然后呢我们 ...
分类:
其他好文 时间:
2018-12-24 13:19:01
阅读次数:
112
Given a set of points in the xy-plane, determine the minimum area of any rectangle formed from these points, with sides not necessarily parallel to th ...
分类:
其他好文 时间:
2018-12-23 23:53:54
阅读次数:
176
`RMQ(Range Minimum/Maximum Query)`,即区间最值问题。 对于长度为 的数列 ,回答若干查询 `RMQ(A,i,j)(i,j &A) { int n=A.size(); for (int i=0; i ...
分类:
其他好文 时间:
2018-12-22 19:35:23
阅读次数:
257
<!DOCTYPE HTML><html><head> <meta charset="utf-8"> <meta name="viewport" content="maximum-scale=1.0, minimum-scale=1.0, user-scalable=0, initial-scale ...
分类:
移动开发 时间:
2018-12-22 11:32:05
阅读次数:
221
第1步:添加包引用 Install-Package Microsoft.AspNetCore.Session 第2步:添加代码启用Session 在项目Startup.cs文件的ConfigureServices方法中添加以下代码: services.AddSession(); 并且将:option ...
分类:
Web程序 时间:
2018-12-19 17:04:06
阅读次数:
265
A car travels from a starting position to a destination which is target miles east of the starting position. Along the way, there are gas stations. Ea ...
分类:
其他好文 时间:
2018-12-18 13:12:57
阅读次数:
191