tadus
tadus
全部文章
分类
题解(5)
归档
标签
去牛客网
登录
/
注册
tadus的博客
全部文章
(共5篇)
穷举
#include <iostream> #include <string> int find_mx_substr_len(const std::string& str_a,const std::string& str_b){ auto & a ...
2021-03-12
0
381
自己看
#include <utility> #include <string> #include <iostream> #include <vector> #include <list> #include <sstream> std...
2021-03-12
0
555
动态规划
#include <iostream> #include <cstring> int main(){ int cache[11][11]; bzero(cache,sizeof(cache)); for(int i=0;i<11;++i){ ...
2021-03-12
0
497
找规律,自已看
#include <iostream> /* 1 1 1 1 1 2 3 2 1 1 3 6 7 6 3 1 1 ...
2021-03-11
0
591
堆排序
#include <iostream> #include <vector> #include <algorithm> int main(){ auto cmp = [](const int a,const int b)->bool{return a ...
2021-03-11
1
448