摘要:
非常好的一道理解LCS本质的题目 class Solution { public: string longestCommonSubsequence(const string str1, const string str2) { int m = str1.length(); int n = str2. 阅读全文
摘要:
本题的模式串可以展开,使用栈来模拟即可,每次一个(放入栈中对应的位置以及前面的数量,每次)弹出栈顶元素,然后将栈顶元素的数量乘以当前的字符串加上栈顶元素的前面的字符串加入到模式串中即可。 需要注意有可能模式串非常长,所以中间需要判断是否已经超过了匹配串的长度,超过则直接返回。 有了模式串和匹配串之后 阅读全文
摘要:
这期的题目整体比较简单,相比之前的都简单 第一题-塔子哥送粉丝周边 简单排序 #include<bits/stdc++.h> using namespace std; #define int long long const int N = 2e5+100; struct str{ int num; 阅读全文
摘要:
第一题-塔子哥的质数和合数 #include<bits/stdc++.h> using namespace std; #define int long long const int N = 2e5+100; int n,arr[N]; signed main(){ cin>>n; set<int> 阅读全文
摘要:
前言 写在前面,由于很长一段时间没有敲代码了,上周写了华为的题目,debug半天也没有debug出一道来,属实狠狠的打击到我了,因此特开此专栏,以便开启老年选手康复之路!!! 第一题-塔子哥的好子矩阵 前3题,手速题 水题 #include<bits/stdc++.h> using namespac 阅读全文
摘要:
SQL-Boy上线,最近在写SQL语句遇到了这样的问题。 Problem:Every derived table must have its own alias 错误语句如下 delete from Person where id not in ( select id from ( select m 阅读全文
摘要:
题意不是很清晰: 1.比如对于 graph=[[1,1,0],[1,1,1],[0,1,1]], initial=[0,1] 来说,可以发现结点的链接情况是 0-1-2,感染源结点是0和1,若是按之前题目的要求,移除0和1都不会减少最终感染个数,但是应该返回结点0,因为其 index 小。但是应用此 阅读全文
摘要:
这道题目是经典的求 子数组之和=goal的个数,用map维护。 但是笔者在实现的过程中发现0的情况不是很好出来,问题在于mp[sum]和sum+=num的代码语句存在位置问题。后来看了下代码还是自己没有考虑清楚。 这种类型的题目就是要想清楚你的做法,以及边界条件。 class Solution { 阅读全文
摘要:
#include<bits/stdc++.h> using namespace std; #define int long long const int N=666; int arr[N][N]; int sum[N][N]; signed main(){ int n; while(cin>>n){ 阅读全文
摘要:
A题 桶排序 1 import java.util.*; 2 public class Main { 3 public static void main(String[] args) { 4 Scanner sc=new Scanner(System.in); 5 int[] arr=new int 阅读全文