N_zip
N_zip
全部文章
分类
归档
标签
去牛客网
登录
/
注册
N_zip的博客
全部文章
(共73篇)
题解 | 【模板】多重背包
#include <iostream> #include <vector> using namespace std; int main() { int t; cin>>t; while(t--) { int n,m; ci...
2025-07-19
0
25
题解 | 【模板】完全背包
#include <iostream> #include <vector> using namespace std; int main() { int t; cin>>t; while(t--) { int n,m...
2025-07-19
0
26
题解 | 【模板】完全背包
#include <iostream> #include <vector> using namespace std; int main() { int t; cin>>t; while(t--) { int n,m...
2025-07-19
0
30
题解 | 装箱问题
#include <iostream> #include <vector> using namespace std; int main() { int m,n; cin>>m>>n; vector<int> w(...
2025-07-18
0
30
题解 | 【模板】01背包
#include <iostream> #include <vector> using namespace std; int main() { int t; cin>>t; while(t--) { int n,m...
2025-07-18
0
33
题解 | 斗兽棋
#include <iostream> using namespace std; int main() { string s1,s2; cin>>s1>>s2; if(s1==s2) cout<<"tie"...
2025-07-18
0
32
题解 | 寻找第K大
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型vector * @param n int整型 *...
2025-07-18
0
33
题解 | 最小的K个数
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param input int整型vector * @param k int整型 ...
2025-07-18
0
28
题解 | 有效括号序列
class Solution { public: /** *核心思想:将括号转化为数字,判断是否匹配。 { 1 [ 2 ( 3 ) 4 ] 5 } 6 看栈顶元素加当前元素是否为7,是否为空。 */ int ID(char a) ...
2025-07-17
0
30
题解 | 吐泡泡
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; while(n--) { string s; cin>&g...
2025-07-17
0
22
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页