1 题目描述 地上有一个m行和n列的方格。一个机器人从坐标0,0的格子开始移动,每一次只能向左,右,上,下四个方向移动一格,但是不能进入行坐标和列坐标的数位之和大于k的格子。 例如,当k为18时,机器人能够进入方格(35,37),因为3+5+3+7 = 18。但是,它不能进入方格(35,38),因为 ...
分类:
其他好文 时间:
2019-08-31 21:46:11
阅读次数:
92
${\color{Cyan}{>>Question}}$ 随着题量的上升,见的模型也越来越多 动态规划,明确的状态定义,明确的转移,明确的边界(有时边界比转移更重要) 比如此题,最开始我并没有看出是区间$dp$,但我突然想起紫书上一道题,"割木棍" 仔细想想,几乎与此题一样 最开始,我定义$f[i, ...
分类:
其他好文 时间:
2019-08-31 20:58:41
阅读次数:
74
Question Given a collection of numbers that might contain duplicates, return all possible unique permutations. For example,[1,1,2] have the following ...
分类:
其他好文 时间:
2019-08-31 01:02:32
阅读次数:
53
Question There are a total of n courses you have to take, labeled from 0 to n-1. Some courses may have prerequisites, for example to take course 0 you ...
分类:
其他好文 时间:
2019-08-30 14:00:37
阅读次数:
84
1 题目描述 给一个链表,若其中包含环,请找出该链表的环的入口结点,否则,输出null。 2 思路和方法 这是一个典型的链表中查找环的问题,基本思路是,首先设置两个快慢指针slow和fast,并且快指针fast每次前进两步,慢指针slow每次前进一步,假定当相遇的时候,设慢指针在环中走了k步,设环之 ...
分类:
其他好文 时间:
2019-08-29 13:30:04
阅读次数:
73
1.表象 2.深究原因,找到日志在 参考:https://yq.aliyun.com/articles/630486 http://hbase.group/question/200 ...
分类:
编程语言 时间:
2019-08-29 00:03:11
阅读次数:
349
题目描述 给定一个double类型的浮点数base和int类型的整数exponent。求base的exponent次方。 保证base和exponent不同时为0 题目链接: https://www.nowcoder.com/practice/1a834e5e3e1a4b7ba251417554e0 ...
分类:
其他好文 时间:
2019-08-28 18:28:53
阅读次数:
93
MySQL数据库重点监控指标 QPS queries per seconds 每秒中查询数量 show global status like 'Question%'; Queries/seconds TPS Tranaction per seconds 每秒钟事务数量 TPS= (Com_commi ...
分类:
数据库 时间:
2019-08-28 12:50:06
阅读次数:
114
原题链接在这里:https://leetcode.com/problems/candy-crush/ 题目: This question is about implementing a basic elimination algorithm for Candy Crush. Given a 2D i ...
分类:
其他好文 时间:
2019-08-28 01:34:34
阅读次数:
125
1.5 编写一种递归方法,它返回数N的二进制中表示1的个数。利用这样一个事实:N为奇数,其1的个数为N/2的二进制中1的个数加1. ...
分类:
其他好文 时间:
2019-08-27 17:17:50
阅读次数:
44