郭凯要加油
郭凯要加油
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
郭凯要加油的博客
全部文章
(共3篇)
题解 | #连续最大和#
#include<bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n) { ...
C++
2022-03-27
0
456
题解 | #走格子#
class Flood { public: int MAX=1000; int floodFill(vector<vector<int> > map, int n, int m) { vector<vector<int>>dp(n,v...
C++
动态规划
2022-03-25
1
506
题解 | #集合的子集#
class Subset { public: vector<vector>res; vectorpath; void recur(vector<int>nums,int start_index) { if(!path.empty()) { res...
C++
2022-03-25
0
396