yigu2468
yigu2468
全部文章
分类
归档
标签
去牛客网
登录
/
注册
yigu2468的博客
全部文章
(共47篇)
题解 | #Redraiment的走法#
#include <iostream> #include <vector> // dp[i]表示以 A[i]作为末尾的最长递增子序列的长度 int arr[201]; int dp[201]; using namespace std; int main() { ...
2024-03-25
0
192
题解 | #字符串通配符#
#include <iostream> using namespace std; bool match(const char* p, const char* s) { if (*p == '\0' && *s == '\0') return true; ...
2024-03-25
0
217
题解 | #24点游戏算法#
#include <iostream> #include <vector> #include <algorithm> using namespace std; double compute(double x,double y,char op){ swi...
2024-03-25
0
192
题解 | #火车进站#
#include <iostream> #include <stack> #include <vector> #include <algorithm> using namespace std; void dfs(vector<int>&...
2024-03-25
0
190
题解 | #矩阵乘法计算量估算#
#include <iostream> #include <vector> #include <stack> using namespace std; int main() { int n; while (cin >> n) { ...
2024-03-24
0
203
题解 | #矩阵乘法#
#include <iostream> #include <vector> using namespace std; int main() { int x, y, z; while (cin >> x >> y >> z...
2024-03-24
0
185
题解 | #配置文件恢复#
#include <iostream> #include <sstream> #include <map> using namespace std; map<string, string> mp = {{"reset", &qu...
2024-03-24
0
170
题解 | #查找两个字符串a,b中的最长公共子串#
#include <iostream> using namespace std; int main(){ string ls,ss; while (cin>>ls>>ss){ if (ls.size()<ss.size()...
2024-03-24
0
182
题解 | #迷宫问题#
#include <iostream> #include <vector> using namespace std; int n, m; vector<vector<int>> numV; vector<vector<int>>...
2024-03-24
0
190
题解 | #将真分数分解为埃及分数#
#include <iostream> using namespace std; int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); } int main() { s...
2024-03-23
0
157
首页
上一页
1
2
3
4
5
下一页
末页