Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. Example: 这是一个DP题,好像是线性DP吧。 官方题解有DP的 ...
分类:
其他好文 时间:
2019-05-10 13:09:06
阅读次数:
138
#include<bits/stdc++.h>using namespace std;int n,m,l,t;int a[1307][137][67];int vis[1307][137][67];typedef struct{ int x,y,z;}node;int xx[6]={0,0,0,0, ...
分类:
其他好文 时间:
2019-05-09 23:45:36
阅读次数:
158
地址:https://leetcode.com/problems/kth-largest-element-in-an-array/ 描述: Find the kth largest element in an unsorted array. Note that it is the kth large ...
分类:
其他好文 时间:
2019-04-30 23:35:31
阅读次数:
124
1.新建Account类,使用AtomicLong定义账户余额,增加和减少金额方法使用getAndAdd方法。 2.Bank和Company类与https://www.cnblogs.com/xkzhangsanx/p/10759690.html一致。 3.测试类 4.测试结果 参考:java7并发 ...
分类:
其他好文 时间:
2019-04-26 22:39:28
阅读次数:
299
```cpp include include include include define inf (int)(1e9+1000) define maxn (int)(1e5+1000) using namespace std; int fa[maxn],size[maxn],cnt[maxn],s ...
分类:
其他好文 时间:
2019-04-23 21:21:13
阅读次数:
169
背景 ps:首先我们在一个索引里面写入一万条以上的数据。作为数据源 现在我想看到第一万零一条数据,首先第一想法是,from 10000 size 1 ,这样做会包下面错误。显然是不成立的。此时便会用到scroll分页, 补充一点:from size分页,假如你要获取第1000到1010条数据,即fr ...
分类:
Web程序 时间:
2019-04-22 11:58:22
阅读次数:
556
Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. Example: Inpu ...
分类:
编程语言 时间:
2019-04-17 20:51:31
阅读次数:
232
You need to find the largest value in each row of a binary tree. Example: ...
分类:
其他好文 时间:
2019-04-16 13:07:18
阅读次数:
144
"167. Two Sum II Input array is sorted" 分析:简单题,双指针,如果比target大,则说明j要变小,如果比target小,说明i要变大 "215. Kth Largest Element in an Array" 分析:快排思想,不过递归的时候根据当前位置和k ...
分类:
其他好文 时间:
2019-04-15 21:38:56
阅读次数:
176
410. Split Array Largest Sum Given an array which consists of non-negative integers and an integer m, you can split the array into m non-empty continu ...
分类:
其他好文 时间:
2019-04-13 09:13:00
阅读次数:
162