首页 > TAG信息列表 > longest

leetcode 409 Longest Palindrome 最长回文串(简单)

一、题目大意 给定一个包含大写字母和小写字母的字符串 s ,返回 通过这些字母构造成的 最长的回文串 。 在构造过程中,请注意 区分大小写 。比如 "Aa" 不能当做一个回文字符串。 示例 1: 输入:s = "abccccdd" 输出:7 解释: 我们可以构造的最长的回文串是"dccaccd", 它的长度是 7。

Educational DP Contest G - Longest Path

目录题目思路代码 题目 给定一个有向无环图,叫你求图中的最长路径 思路 记忆化搜索,定义 f[i] : 表示从点i开始的最长路径长度,那么很容易得出转移方程为 \(f_i = max(f_i, f_j+1)\),j为i的子节点 代码 点击查看代码 /* * @Descripttion: * @Author: Echo * @version: * @Date: 2

longest increasing subsequence

300. Longest Increasing Subsequence Medium Given an integer array nums, return the length of the longest strictly increasing subsequence. A subsequence is a sequence that can be derived from an array by deleting some or no elements without changing t

LeetCode 1044. Longest Duplicate Substring

原题链接在这里:https://leetcode.com/problems/longest-duplicate-substring/ 题目: Given a string s, consider all duplicated substrings: (contiguous) substrings of s that occur 2 or more times. The occurrences may overlap. Return any duplicated substring th

LeetCode Longest Increasing Path in a Matrix 记忆化搜索+DP [Hard]

Given an \(m \times n\) integers matrix, return the length of the longest increasing path in matrix. From each cell, you can either move in four directions: left, right, up, or down. You may not move diagonally or move outside the boundary (i.e., wrap-

[LeetCode] 516. Longest Palindromic Subsequence

Given a string s, find the longest palindromic subsequence's length in s. A subsequence is a sequence that can be derived from another sequence by deleting some or no elements without changing the order of the remaining elements. Example 1: Input: s

POJ2533 Longest Ordered Subsequence (线性DP)

设dp[i]表示以i结尾的最长上升子序列的长度。 dp[i]=max(dp[i],dp[j]+1). 1 #include <map> 2 #include <set> 3 #include <cmath> 4 #include <queue> 5 #include <cstdio> 6 #include <vector> 7 #include <climits> 8 #include &

python 练习题 409. 最长回文串

地址:https://leetcode.cn/problems/longest-palindrome/   1 ''' 2 给定一个包含大写字母和小写字母的字符串 s ,返回 通过这些字母构造成的 最长的回文串 。 3 4 在构造过程中,请注意 区分大小写 。比如 "Aa" 不能当做一个回文字符串。 5 6   7 8 示例 1: 9

error: conflicting types for xxx in c

一、问题描述 #include <stdio.h> #define MAXLINE 1000 /* maximum input line length */ int getline(char lines[], int maxline); void copy(char to[], char from[]); int main(void) { int len; // current line length int max; // maximum lenght seen s

LeetCode 0128 Longest Consecutive Sequence

原题传送门 1. 题目描述 2. Solution 1 1、思路分析 使用HashMap来记录连续序列长度,并把结果保存到边界点。如,给定序列{1, 2, 3, 4, 5}, map.get(1) 与 map.get(5)均得到5。 当一个新元素n插入到map时,做下面两件事 查询n-1 和 n+1是否存在在map中,若存在,则表示序列延伸至n。变量l

leetcode 3. Longest Substring Without Repeating Characters 无重复字符的最长子串

一、题目大意 https://leetcode.cn/problems/longest-substring-without-repeating-characters/ 给定一个字符串 s ,请你找出其中不含有重复字符的 **最长子串 **的长度。 示例 1: 输入: s = "abcabcbb" 输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 示例 2

C. Longest Simple Cycle_dp

C. Longest Simple Cycle 1600 题目大意 给n条链,每条链有ci个节点,每条边长度是1。现在对除了第一条链以外的每一条链,其两个端点都和前一条链的ai点bi点相连。问该图的最长环长度。 思路和代码 一拿到题,这不就dfs一下O(n)解决嘛。 再看数据范围,好家伙1e14个点。 好在这题比较好想。

LeetCode每日一练【3】

LeetCode每日一练 Longest Substring Without Repeating Characters function lengthOfLongestSubstring(s) { const scanner = [] let longest = 0 for (const element of s) { // 查找当前元素是否在数组中 const possibleIndex = scanner.indexOf(e

最长连续序列计算

题目 输入一个无序的整数数组, 请计算最长的连续数值序列的长度。例如,输入数组[10,5,9,2,4,3],则最长的连续序列是[2,3,4,5],输出长度为4 解法 使用广度优先遍历 //leetcode submit region begin(Prohibit modification and deletion) class Solution { public int longestCons

LeetCode 0032 Longest Valid Parentheses

原题传送门 1. 题目描述 2. Solution 1 1、思路分析 思路一: 动态规划 定义 dp[i] 表示以下标i字符结尾的最长有效括号的长度(init 0)。 1. s[i] = ')' 且 s[i-1]='(' 即 "....()" => dp[i] = dp[i-2] + 2 ​ 2. s[i] = ')' 且 s[i-1] = ')' 即 "....))&

#1048 Longest String Chain

Description You are given an array of words where each word consists of lowercase English letters. wordA is a predecessor of wordB if and only if we can insert exactly one letter anywhere in wordA without changing the order of the other characters to mak

最长回文字符串

什么是回文子串 回文子串,就是正着读和反正读是一样的字符串,比如 “上海自来水来自海上” 发音 palindrome 回文的 [ˈpælɪndroʊm] 解法 有3个解法 暴力解法 O(n^3) Manacher’s Algorithm O(n) 中心点枚举法 O(n^2) 动态规划 O(n^2) 中心点枚举法 使用双指针解答 分为两种情

Longest Common Substring (K3)

原题在这里: https://leetcode.com/discuss/interview-question/1273766/longest-common-substring 这道题跟https://www.cnblogs.com/feiflytech/p/15841611.html 类似,但是不完全相同: 首选自顶向下写个递归,与1143只有一点点不同。 private Integer[][] dp; private int m

1143. Longest Common Subsequence

找两组数据的最大数值,可以自顶向下写个递归,把可能重复的部分记录下来,用一个二维数组来存储: class Solution { private Integer[][] dp; private int m, n; public int longestCommonSubsequence(String text1, String text2) { m = text1.length();

CF700E Cool Slogans

首先可以发现选出的字符串序列一定可以调整成 \(s_i\) 为 \(s_{i + 1}\) 的一段后缀。 注意到这本质上是一个关于子串选择,与子串出现位置有关的问题,于是考虑借助 \(\rm endpos\) 来解决。 那么这个问题本质上就是选择后缀自动机 \(\rm parent\) 树上一条合法的祖先链。 由于 \(\rm

AtCoder Beginner Contest 229 D - Longest X

题意 给定一个只包含'X'和'.'的串和整数k,可以对串进行k次替换,每次把一个'.'替换成'X'。 串的长度和k的范围都是2e5级别。 问:替换完成后,最多有多少个连续的'X'? 题解 公理1:最多替换k次。 公理2:复杂度支持遍历串的所有'.',进行滑动窗口。 性质1:最终替换结果一定是"靠在"一个比较长的"

最长回文子串(Longest Palindromic Substring) -5

题目:给你一个字符串 s,找到 s 中最长的回文子串。 输入:s = "babad"输出:"bab" 原题链接:https://leetcode-cn.com/problems/longest-palindromic-substring/   思路: 1. 动态规划 class Solution { public String longestPalindrome(String s) { int max = 1, n

Leetcode524 通过删除字母匹配到字典里最长单词

Leetcode 524 力扣 题目: 给你一个字符串 s 和一个字符串数组 dictionary ,找出并返回 dictionary 中最长的字符串,该字符串可以通过删除 s 中的某些字符得到。 如果答案不止一个,返回长度最长且字母序最小的字符串。如果答案不存在,则返回空字符串。 示例: 题解: 方法:双指针  分

Leetcode 14.最长公共前缀 Python

class Solution: def longestCommonPrefix(self, strs): longest="" for i in range(min([len(s) for s in strs])): yn=[] for s2 in strs: yn.append(s2.startswith(strs[0][:i+1])) if

[Leetcode 5] 最长回文子串Longest Palindromic Substring

问题 求最长回文子串,即左右对称 Given a string s, return the longest palindromic substring in s.   Example 1: Input: s = "babad" Output: "bab" Note: "aba" is also a valid answer. Example 2: Input: s = "cbbd" Output: "bb"