Codeforces Round 599 Div2解题报告A D A. Maximum Square c++ include using namespace std; typedef long long ll; int main() { ll n; cin n; ll st = 0; ll i; f ...
分类:
其他好文 时间:
2020-01-08 14:26:43
阅读次数:
70
前端页面自适应 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> 页面的头部加上这句话. ...
分类:
其他好文 时间:
2020-01-08 12:47:51
阅读次数:
53
Zookeeper是Hadoop分布式调度服务,用来构建分布式应用系统。构建一个分布式应用是一个很复杂的事情,主要的原因是我们需要合理有效的处理分布式集群中的部分失败的问题。例如,集群中的节点在相互通信时,A节点向B节点发送消息。A节点如果想知道消息是否发送成功,只能由B节点告诉A节点。那么如果B节 ...
分类:
其他好文 时间:
2020-01-07 16:15:57
阅读次数:
84
今天一个接口响应超时,然后我优化,用到了本地缓存。 maven 依赖 <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>27.1-jre</version> </depen ...
分类:
其他好文 时间:
2020-01-07 00:34:24
阅读次数:
292
Description: Given an integer array arr and an integer k, modify the array by repeating it k times. For example, if arr = [1, 2] and k = 3 then the mo ...
分类:
其他好文 时间:
2020-01-06 21:01:13
阅读次数:
108
1. ClickHouse 查询时,报错:Memory limit (for query) exceeded: would use 9.38 GiB (attempt to allocate chunk of 135439453 bytes), maximum: 9.31 GiB 1.1 Click ...
分类:
其他好文 时间:
2020-01-06 19:37:45
阅读次数:
598
https://leetcode.com/problems/path-sum-iii/ https://leetcode.com/problems/path-sum-iv/ https://leetcode.com/problems/maximum-product-of-three-numbers/ ...
分类:
其他好文 时间:
2020-01-05 11:39:50
阅读次数:
78
Maximum Subarray DP问题 全称(Dynamic Programming) https://www.freecodecamp.org/news/follow these steps to solve any dynamic programming interview problem ...
分类:
其他好文 时间:
2020-01-04 22:37:30
阅读次数:
95
题目如下: Given n boxes, each box is given in the format [status, candies, keys, containedBoxes] where: status[i]: an integer which is 1 if box[i] is open ...
分类:
其他好文 时间:
2020-01-04 22:20:05
阅读次数:
86
非极大抑制(Non-maximum suppression)python代码实现原创Butertfly 发布于2018-11-20 18:48:57 阅读数 293 收藏展开定位一个物体,最后算法就找出了一堆的方框,我们需要判别哪些矩形框是没用的。非极大值抑制:先假设有6个矩形框,根据分类器类别分类 ...
分类:
编程语言 时间:
2020-01-04 14:08:44
阅读次数:
130