发布于 22 天前 判断子序列 Violet956 1 热度 1 评论 C++ #include <bits/stdc++.h> using namespace std; const int N = …
发布于 22 天前 数组元素的目标和 Violet956 1 热度 啥也没有呀 C++ 数组元素的目标和 #include <bits/stdc++.h> using namespace std; cons …
发布于 22 天前 最长连续不重复子序列 Violet956 1 热度 啥也没有呀 C++ #include <bits/stdc++.h> using namespace std; const int N = …
发布于 23 天前 【模板】双指针算法 Violet956 1 热度 啥也没有呀 C++ //普通做法O(n*n) for(int i=0;i<n;++i) for(int j=0;j<n;++j) //yo …