
动态规划
文章平均质量分 78
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 474. Ones and Zeroes
原题网址:https://leetcode.com/problems/ones-and-zeroes/In the computer world, use restricted resource you have to generate maximum benefit is what we always want to pursue.For now, suppose you a原创 2016-12-15 04:47:57 · 1563 阅读 · 0 评论 -
LintCode Backpack(背包)
原题网址:http://www.lintcode.com/en/problem/backpack/Given n items with size Ai, an integer m denotes the size of a backpack. How full you can fill this backpack? NoticeYou can not divid原创 2016-06-21 00:29:43 · 927 阅读 · 0 评论 -
LeetCode 123. Best Time to Buy and Sell Stock III(股票买卖)
原题网址:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iii/Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to find the原创 2016-05-24 00:37:21 · 641 阅读 · 0 评论 -
LeetCode 120. Triangle(三角形)
原题网址:https://leetcode.com/problems/triangle/Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the原创 2016-05-24 00:20:03 · 821 阅读 · 0 评论 -
LeetCode 310. Minimum Height Trees(最小高度树)
原题网址:https://leetcode.com/problems/minimum-height-trees/For a undirected graph with tree characteristics, we can choose any node as the root. The result graph is then a rooted tree. Among all po原创 2016-04-21 06:51:54 · 3031 阅读 · 0 评论 -
LeetCode 44. Wildcard Matching(模糊匹配)
原题网址:https://leetcode.com/problems/wildcard-matching/Implement wildcard pattern matching with support for '?' and '*'.'?' Matches any single character.'*' Matches any sequence of characters (原创 2016-05-21 04:07:39 · 2657 阅读 · 0 评论 -
LeetCode 265. Paint House II(房子涂色)
原题网址:https://leetcode.com/problems/paint-house-ii/There are a row of n houses, each house can be painted with one of the k colors. The cost of painting each house with a certain color is differe原创 2016-04-10 16:22:00 · 1606 阅读 · 0 评论 -
LeetCode 330. Patching Array(数组补丁)
原题网址:https://leetcode.com/problems/patching-array/Given a sorted positive integer array nums and an integer n, add/patch elements to the array such that any number in range [1, n] inclusive ca原创 2016-04-28 06:24:51 · 592 阅读 · 0 评论 -
LeetCode 372. Super Pow
原题网址:https://leetcode.com/problems/super-pow/Your task is to calculate ab mod 1337 where a is a positive integer and b is an extremely large positive integer given in the form of an array.Exam原创 2016-07-14 01:42:28 · 1051 阅读 · 0 评论 -
LeetCode 10. Regular Expression Matching(正则表达式匹配)
原题网址:https://leetcode.com/problems/regular-expression-matching/Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of原创 2016-05-19 05:10:02 · 1522 阅读 · 0 评论 -
LeetCode 264. Ugly Number II(丑数字)
原题网址:https://leetcode.com/problems/ugly-number-ii/Write a program to find the n-th ugly number.Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 1, 2原创 2016-04-10 14:12:31 · 890 阅读 · 0 评论 -
LeetCode 357. Count Numbers with Unique Digits(计算无重复数字)
原题网址:https://leetcode.com/problems/count-numbers-with-unique-digits/Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x n.Example:Given n = 2, return 91. (原创 2016-06-15 02:04:36 · 1416 阅读 · 0 评论 -
LeetCode 132. Palindrome Partitioning II(回文切分)
原题网址:https://leetcode.com/problems/palindrome-partitioning-ii/Given a string s, partition s such that every substring of the partition is a palindrome.Return the minimum cuts needed for a pa原创 2016-05-27 00:22:56 · 794 阅读 · 0 评论 -
LeetCode 256. Paint House(房子涂色)
原题网址:https://leetcode.com/problems/paint-house/There are a row of n houses, each house can be painted with one of the three colors: red, blue or green. The cost of painting each house with a cer原创 2016-04-09 05:05:47 · 1703 阅读 · 0 评论 -
LintCode Backpack II(背包II)
原题网址:http://www.lintcode.com/en/problem/backpack-ii/Given n items with size Ai and value Vi, and a backpack with size m. What's the maximum value can you put into the backpack? Notice原创 2016-06-21 00:55:11 · 580 阅读 · 0 评论 -
LintCode Backpack III(背包III)
原题网址:http://www.lintcode.com/en/problem/backpack-iii/Given n kind of items with size Ai and value Vi(each item has an infinite number available) and a backpack with size m. What's the maximum原创 2016-06-21 01:05:37 · 1273 阅读 · 0 评论 -
LeetCode 354. Russian Doll Envelopes(信封包装)
原题网址:https://leetcode.com/problems/russian-doll-envelopes/You have a number of envelopes with widths and heights given as a pair of integers (w, h). One envelope can fit into another if and on原创 2016-06-16 06:39:42 · 2620 阅读 · 0 评论 -
464. Can I Win
原题网址:https://leetcode.com/problems/can-i-win/In the "100 game," two players take turns adding, to a running total, any integer from 1..10. The player who first causes the running total to reach原创 2016-11-26 02:24:53 · 1067 阅读 · 0 评论 -
467. Unique Substrings in Wraparound String
原题网址:https://leetcode.com/problems/unique-substrings-in-wraparound-string/Consider the string s to be the infinite wraparound string of "abcdefghijklmnopqrstuvwxyz", so s will look like this:原创 2016-12-06 05:32:55 · 686 阅读 · 0 评论 -
446. Arithmetic Slices II - Subsequence
原题网址:https://leetcode.com/problems/arithmetic-slices-ii-subsequence/A sequence of numbers is called arithmetic if it consists of at least three elements and if the difference between any two con原创 2016-12-04 04:18:05 · 1323 阅读 · 0 评论 -
HackerRank The Maximum Subarray
原题网址:https://www.hackerrank.com/challenges/maxsubarrayGiven an array of elements, find the maximum possible sum of aContiguous subarrayNon-contiguous (not necessarily contiguou原创 2016-07-22 06:56:23 · 903 阅读 · 0 评论 -
LeetCode 313. Super Ugly Number(超级丑的数字)
原题网址:https://leetcode.com/problems/super-ugly-number/Write a program to find the nth super ugly number.Super ugly numbers are positive numbers whose all prime factors are in the given prime原创 2016-04-22 01:41:57 · 1551 阅读 · 0 评论 -
LeetCode 368. Largest Divisible Subset
原题网址:https://leetcode.com/problems/largest-divisible-subset/Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfie原创 2016-06-29 05:05:01 · 730 阅读 · 0 评论 -
LeetCode 373. Find K Pairs with Smallest Sums
原题网址:https://leetcode.com/problems/find-k-pairs-with-smallest-sums/You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k.Define a pair (u,v) which consists原创 2016-07-14 00:51:28 · 801 阅读 · 0 评论 -
LeetCode 188. Best Time to Buy and Sell Stock IV(股票买卖)
原题网址:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv/Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to find the m原创 2016-05-02 15:03:28 · 1990 阅读 · 0 评论 -
LeetCode 276. Paint Fence(篱笆涂色)
原题网址:https://leetcode.com/problems/paint-fence/There is a fence with n posts, each post can be painted with one of the k colors.You have to paint all the posts such that no more than two adj原创 2016-04-14 00:48:41 · 1618 阅读 · 0 评论 -
LeetCode 376. Wiggle Subsequence(摇摆子序列)
原题网址:https://leetcode.com/problems/wiggle-subsequence/A sequence of numbers is called a wiggle sequence if the differences between successive numbers strictly alternate between positive and nega原创 2016-07-22 06:18:49 · 1524 阅读 · 0 评论 -
HackerRank Fibonacci Modified
原题网址:https://www.hackerrank.com/challenges/fibonacci-modifiedA series is defined in the following manner:Given the nth and (n+1)th terms, the (n+2)th can be computed by the following r原创 2016-06-23 08:04:40 · 690 阅读 · 0 评论 -
LeetCode 115. Distinct Subsequences(子序列数量)
原题网址:https://leetcode.com/problems/distinct-subsequences/Given a string S and a string T, count the number of distinct subsequences of T in S.A subsequence of a string is a new string which原创 2016-05-24 00:19:33 · 536 阅读 · 0 评论 -
LeetCode 72. Edit Distance(编辑距离)
原题网址:https://leetcode.com/problems/edit-distance/Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.)Y原创 2016-05-22 05:18:34 · 705 阅读 · 0 评论 -
LeetCode 91. Decode Ways(解码方法)
原题网址:https://leetcode.com/problems/decode-ways/A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an enco原创 2016-05-23 00:42:32 · 2606 阅读 · 1 评论 -
LeetCode 97. Interleaving String(字符串交织)
原题网址:https://leetcode.com/problems/interleaving-string/Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.For example,Given:s1 = "aabcc",s2 = "dbbca",When原创 2016-05-23 00:39:00 · 976 阅读 · 0 评论 -
LeetCode 96. Unique Binary Search Trees(唯一二叉树)
原题网址:https://leetcode.com/problems/unique-binary-search-trees/Given n, how many structurally unique BST's (binary search trees) that store values 1...n?For example,Given n = 3, there are a原创 2016-05-23 00:38:28 · 399 阅读 · 0 评论 -
LeetCode 221. Maximal Square(最大正方形)
原题网址:https://leetcode.com/problems/maximal-square/Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area.For example, given the foll原创 2016-05-06 12:25:55 · 1565 阅读 · 0 评论 -
LeetCode 213. House Robber II(小偷游戏)
原题网址:https://leetcode.com/problems/house-robber-ii/Note: This is an extension of House Robber.After robbing those houses on that street, the thief has found himself a new place for his thiev原创 2016-05-05 03:34:24 · 240 阅读 · 0 评论 -
LeetCode 321. Create Maximum Number(寻找最大数)
原题网址:https://leetcode.com/problems/create-maximum-number/Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum number of length k from digits of th原创 2016-04-25 02:00:54 · 1998 阅读 · 0 评论 -
LeetCode 204. Count Primes(统计素数)
原题网址:https://leetcode.com/problems/count-primes/Description:Count the number of prime numbers less than a non-negative number, n.Credits:Special thanks to @mithmatt for adding this pro原创 2016-05-04 07:47:09 · 493 阅读 · 0 评论 -
LeetCode 198. House Robber(小偷游戏)
原题网址:https://leetcode.com/problems/house-robber/You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stoppin原创 2016-05-04 03:22:57 · 1566 阅读 · 0 评论 -
LeetCode 139. Word Break(单词分隔)
原题网址:https://leetcode.com/problems/word-break/Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.原创 2016-05-27 00:22:29 · 836 阅读 · 0 评论 -
LeetCode 91. Decode Ways(解码方法)
原题网址:https://leetcode.com/problems/decode-ways/A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an enco原创 2016-05-26 00:47:29 · 754 阅读 · 0 评论