N_zip
N_zip
全部文章
分类
归档
标签
去牛客网
登录
/
注册
N_zip的博客
全部文章
(共73篇)
题解 | 大水题
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int sum=n; while(sum>=10) { int ...
2025-07-30
0
22
题解 | 打家劫舍(二)
#include <vector> #include <algorithm> using namespace std; class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 ...
2025-07-29
0
19
题解 | 岛屿数量
#include <vector> using namespace std; class Solution { public: // 方向数组:上下左右 int dx[4] = {0, 0, 1, -1}; int dy[4] = {1, -1, 0, 0}; ...
2025-07-29
0
31
题解 | 有重复项数字的全排列
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param num int整型vector * @return int整型vector&...
2025-07-29
0
23
题解 | 没有重复项数字的全排列
/*搜索与回溯一般可以分为六大步 1.枚举 2.是否标记 3.没有则标记 4.搜索 5.回溯(还原状态),类似与悔棋 6.判断结束条件 */ class Solution { public: /** * 生成数字的所有排列 * @param num int整型vector...
2025-07-29
0
23
题解 | 空间跃迁
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { ios::sync_with_stdio(false); c...
2025-07-28
0
21
题解 | 【模板】二维前缀和
#include <iostream> #include <bits/stdc++.h> using namespace std; int main() { int n,m,q; cin>>n>>m>>q; ve...
2025-07-28
0
21
题解 | 牛牛与切割机
#include <climits> #include <iostream> #include <vector> using namespace std; int main() { int n; cin>>n; vector...
2025-07-28
0
32
题解 | 【模板】差分
#include <iostream> #include <vector> using namespace std; //简单的差分问题 int main() { ios::sync_with_stdio(false), cin.tie(nullptr); i...
2025-07-28
0
26
题解 | 小红和小紫的取素因子游戏
#include <iostream> using namespace std; // 直接计算x的质因数个数,无需单独的质数判断函数 int countPrimeFactors(int x) { if (x <= 1) return 0; int co...
2025-07-28
0
25
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页