ICode9

精准搜索请尝试: 精确搜索
  • leetcode 647. Palindromic Substrings回文子串(中等)2022-08-27 22:00:42

    一、题目大意 给你一个字符串 s ,请你统计并返回这个字符串中 回文子串 的数目。 回文字符串 是正着读和倒过来读一样的字符串。 子字符串 是字符串中的由连续字符组成的一个序列。 具有不同开始位置或结束位置的子串,即使是由相同的字符组成,也会被视作不同的子串。 示例 1: 输入:s =

  • PAT Advanced 1024 Palindromic Number(25)2022-08-22 22:05:12

    题目描述: A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number. All single digit numbers are palindromic numbers. Non-palindromic numbers can be paired with pali

  • LeetCode 5 Longest Palindromic Substring2022-08-11 03:00:48

    Given a string s, return the longest palindromic substring in s. Solution 求在 \(s\) 中的最长回文字串。对于每一个位置,进行左右拓展,计算出长度并更新答案即可。 \(Notes:\) 对于奇数或者偶数长度的字串,为了统一: 奇数: \(check(s,i,i)\) 偶数:\(check(s,i,i+1)\) 点击查看

  • [LeetCode] 516. Longest Palindromic Subsequence2022-06-29 11:35:32

    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

  • 1019 General Palindromic Number(20分)2022-06-02 15:32:15

    A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number. All single digit numbers are palindromic numbers. Although palindromic numbers are most often considere

  • Leetcode 5 Longest Palindromic Substring DP2022-05-15 03:31:39

    Given a string s, return the longest palindromic substring in s. Solution 设 \(dp[i][j]\) 表示字串 \(s[i,...,j]\) 是否为回文串。初始化时,每个单独的字符本身就是回文串;长度为2的串只要首尾相同,也是回文串;长度 \(\geq 3\) 时,只有满足: \[dp[i+1][j-1]\ \&\&\ s[i]=s[j] \]

  • LeetCode 0005 Longest Palindromic Substring2022-02-22 21:02:53

    原题传送门 1. 题目描述 2. Solution 1: [TLE] Brute force 1、思路 两层循环遍历所有子串,判断是否为回文,保留最长的子串。 2、代码实现 /* Solution 1: Brute force 两层循环遍历所有子串,判断是否为回文,保留最长的子串。 */ public class Solution1 { public Stri

  • 第二十三篇英文翻译2022-02-18 23:02:50

    出处:https://acs.jxnu.edu.cn/problem/NOIOPJCH0405223 重点单词: decomposition n.分解,腐烂,变质; unimodal adj.单峰的; UNIMODAL PALINDROMIC DECOMPOSITIONS  1000ms  65536K 描述: A sequence of positive integers is Palindromic if it reads the same forward and backward

  • PAT甲级1024 Palindromic Number (Python)2022-02-03 12:59:47

    本题翻译: 题目给出两个数字,一个是N,一个是K,判断N是否为回文数字,如果不是,将N转换成回文数字后加N,再判断是否为回文数字,循环K次,直到看见回文数字为止,如果在K次循环之内没有看见回文数字,则输出循环了K次的数字,其中个位数默认是回文数字。 本题思路: 写两个函数,一个是判断回文函数,

  • 647. Palindromic Substrings2022-02-03 11:02:29

    This is a "palindromic" problem, I think DP can solve this problem, but there is a easier way to solve it, the time complexity is O(n2): private int res = 0; public int countSubstrings(String s) { for(int i=0;i<s.length();i++

  • 最长回文子串(Longest Palindromic Substring) -52021-12-08 11:31:27

    题目:给你一个字符串 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

  • [Leetcode 5] 最长回文子串Longest Palindromic Substring2021-11-28 06:33:00

    问题 求最长回文子串,即左右对称 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"

  • 欧拉习题362021-11-13 09:03:54

    题目如下: The decimal number, 585 = (binary), is palindromic in both bases. Find the sum of all numbers, less than one million, which are palindromic in base 10 and base 2. (Please note that the palindromic number, in either base, may not include leading ze

  • 力扣 5 longest-palindromic-substring 最长回文子串2021-10-24 15:07:03

    力扣 5 longest-palindromic-substring 最长回文子串 题目 给你一个字符串 s,找到 s 中最长的回文子串。 最长回文子串 题解 dp[i][j] 代表从第i个位置到第j个位置是否为回文。 转移方程为:dp[i][j] = dp[i+1][j-1]&&(s[i]==s[j]) 意思就是要判断当前的串是否回文,如果知道去掉

  • leetcode 516. Longest Palindromic Subsequence | 516. 最长回文子序列(递归 -> 傻缓存 ->DP)2021-09-18 14:05:48

    题目 https://leetcode.com/problems/longest-palindromic-subsequence/ 题解 1、递归(超时) 递归 -> 傻缓存 ->DP class Solution { public int longestPalindromeSubseq(String s) { if (s.length() == 0) return 0; return process(s, 0, s.length() -

  • leetcode 5. Longest Palindromic Substring/ 1254. Number of Closed Islands/ 45. Jump Game2021-09-13 21:32:19

    文章目录 5. Longest Palindromic Substringdynamic O(n^2) O(n^2)中心扩展 O(n^2) O(1)manacher O(n) O(n) (too diffcult) 1254. Number of Closed Islands[DFS,BFS,并查集]DFSunion-find 45. Jump Game II【greedy】greedy O(n) O(n)greedy O(n^2) from the back to the

  • 1019 General Palindromic Number (20 分) 【难度: 简单 / 知识点: 判断回文】2021-09-12 22:01:44

    https://pintia.cn/problem-sets/994805342720868352/problems/994805487143337984 #include<bits/stdc++.h> using namespace std; int n,b; void f(int n,int b) { if(!n) { cout<<"Yes"<<endl<<0; return;

  • [LeetCode] 5. Longest Palindromic Substring _Medium tag: Two pointers2021-07-29 01:03:04

    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" Example 3: Inp

  • [LeetCode] 1930. Unique Length-3 Palindromic Subsequences2021-07-13 02:00:36

    Given a string s, return the number of unique palindromes of length three that are a subsequence of s. Note that even if there are multiple ways to obtain the same subsequence, it is still only counted once. A palindrome is a string that reads the s

  • 【PAT】【简单进制转换】1019 General Palindromic Number (20 分)2021-06-16 12:58:04

     题目链接:1019 General Palindromic Number (20 分) A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number. All single digit numbers are palindromic numbers. Alt

  • PAT 甲级 1019 General Palindromic Number2021-06-12 17:03:12

    PAT 甲级 1019 General Palindromic Number 水题,把数字转换成对应进制,从两头往中间找,看是否对齐 n==0是直接输出Yes和0 // 1019 General Palindromic Number.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include <iostream> using namespace std; int

  • Palindromic Number(注意数字过大的情况)2021-05-23 16:29:19

    Palindromic Number 题目答案注意 题目 A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number. All single digit numbers are palindromic numbers. Non-palindr

  • PAT (Advanced Level) Practice 1019 General Palindromic Number (20 分) 凌宸16422021-04-02 03:04:38

    PAT (Advanced Level) Practice 1019 General Palindromic Number (20 分) 凌宸1642 题目描述: A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number. All single digit n

  • 1332. Remove Palindromic Subsequences (E)2021-03-08 19:01:55

    Remove Palindromic Subsequences (E) 题目 Given a string s consisting only of letters 'a' and 'b'. In a single step you can remove one palindromic subsequence from s. Return the minimum number of steps to make the given string empty. A st

  • LeetCode 5. Longest Palindromic Substring2021-03-08 18:02:28

    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" Example 3: Input

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有