题目链接:https://vjudge.net/contest/103424#problem/K 题目大意: 给n个物品,和m块钱,输出能够购买最多物品的个数和购买这么多物品的方案数。 2018-05-21 ...
分类:
其他好文 时间:
2018-05-21 23:37:54
阅读次数:
230
在刚开始看spring boot的时候,发现这么多starter,不免觉得好奇:这些究竟是怎么工作的,每个里边源码都长啥样?今天我们手写一个starter来了解这个过程: talk--is--cheap--just--show--you--the--code 首先建一个maven项目: pom里添加 ...
分类:
编程语言 时间:
2018-05-21 12:37:02
阅读次数:
207
class Solution { public: int maxProfit(vector& prices) { if (prices.size() == 0) return 0; int res = 0, _min = prices[0]; for (auto p : prices) { if (... ...
分类:
其他好文 时间:
2018-05-20 15:30:16
阅读次数:
130
可以多次买卖的话,就可以利用累加效应,只要后面相邻值大于当前值,就可以获利,将差值作为最大获利值的一部分累加起来。最后结果即为最大获利值。 ...
分类:
其他好文 时间:
2018-05-18 20:14:21
阅读次数:
110
扫描一遍数组,用当前值减去之前的最小值,即为当前可获得的最大利润。扫描完毕后,即为买卖一次能获得的最大利润。 ...
分类:
其他好文 时间:
2018-05-18 19:24:17
阅读次数:
131
为当前用户创建cron服务 1. 键入 crontab -e 编辑crontab服务文件 例如 文件内容如下: */2 * * * * /bin/sh /home/admin/jiaoben/buy/deleteFile.sh 保存文件并并退出 */2 * * * * /bin/sh /home/a ...
分类:
系统相关 时间:
2018-05-17 00:53:52
阅读次数:
206
题目链接: https://cn.vjudge.net/problem/POJ-2828 题目大意: 插队的问题,每个案例给出n,代表有n个插队的,每个给出p,v,意思是代号为v的人插在了第p个人的后面,问最后的队伍的排列? 解题思路: 如果从前往后递推,每次插入在前面的话,后面的人都需要往后移动, ...
分类:
其他好文 时间:
2018-05-12 02:42:12
阅读次数:
166
Problem Description There are a lot of trees in an area. A peasant wants to buy a rope to surround all these trees. So at first he must know the minim ...
分类:
其他好文 时间:
2018-05-03 01:05:21
阅读次数:
198
do not be fooled by those language schools whose only objective is luring you to follow their accounts and eventually buy their couses/..... just simp ...
分类:
其他好文 时间:
2018-05-01 17:42:08
阅读次数:
147
Description Railway tickets were difficult to buy around the Lunar New Year in China, so we must get up early and join a long queue… The Lunar New Yea ...
分类:
编程语言 时间:
2018-04-28 22:23:34
阅读次数:
164