咸鱼精英
咸鱼精英
全部文章
分类
归档
标签
去牛客网
登录
/
注册
咸鱼精英的博客
全部文章
(共4篇)
题解 | #最大子矩阵#
#include <algorithm> #include <climits> #include <iostream> using namespace std; /* 最大子矩阵: 1. 单行(i)->转化为最大子序列 2. 多行(...
2023-02-16
0
390
题解 | #八皇后#
#include <iostream> #include <stack> using namespace std; //输出条件:(int row, int col, int str_num),str_num == b时输出 //DFS条件:b[i][j]对应(i,k), ...
2023-02-12
0
436
题解 | #神奇的口袋#
#include <iostream> using namespace std; //(cur_v, index, select):当(40, i, sel)时,新出现一种选择方式,sel++ int items[20], cur_v = 0, selection = 0, n; i...
2023-02-12
0
244
题解 | #字符串匹配#
#include <cmath> #include <iostream> #include <math.h> using namespace std; /* 最笨的办法暴力求解QvQ []内单独做循环比较,[]外直接比较 */ //不区分大小写的字符比较 bool...
2023-02-07
0
373