N_zip
N_zip
全部文章
分类
归档
标签
去牛客网
登录
/
注册
N_zip的博客
全部文章
(共73篇)
题解 | 全排列
#include<bits/stdc++.h> using namespace std; int n; int a[10]; bool vis[10]; void dfs(int dep) { if(dep==n+1) { for(int i=1;i<...
2025-07-16
0
46
题解 | 数水坑
#include <bits/stdc++.h> using namespace std; char a[110][110]; int n, m; int ans = 0; // 用于记录水坑数量 int dx[] = {0, 0, 1, -1, -1, 1, -1, 1}; int...
2025-07-16
1
42
题解 | 迷宫寻路
#include <bits/stdc++.h> using namespace std; char a[110][110]; int n, m; bool vis[110][110]; int dx[] = {0, 0, 1, -1}; int dy[] = {1, -1, 0, 0...
2025-07-16
0
38
题解 | 活动安排
#include <bits/stdc++.h> using namespace std; struct node{ int left; int right; }a[200010]; int n,ans=1; bool cmp(node A,node B) { ...
2025-07-15
0
26
题解 | 【模板】序列操作
#include <bits/stdc++.h> using namespace std; vector<int> s; bool cmp(int A,int B) { return A>B; } int main() { int n; cin&...
2025-07-14
0
28
题解 | 牛牛学数列6
#include <iostream> using namespace std; int an(int m) { if(m==1) return 0; if(m==2||m==3) return 1; if(m>=4) return an(m-3)+2*an...
2025-07-14
0
22
题解 | kotori和素因子
#include <iostream> #include <vector> #include <algorithm> #include <climits> using namespace std; vector<int> get_prim...
2025-07-14
0
21
题解 | 向量点乘
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 计算两个三维向量的点乘结果 * @param vector1 int整型vector 第一个向量 ...
2025-07-14
0
24
题解 | 求阶乘
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 计算 n 的阶乘 * @param n int整型 * @return int整型 *...
2025-07-13
0
26
题解 | 凯撒解密
class Solution { public: string decodeWangzai(string password, int n) { for(int i=0; i<password.size(); i++) { int offset =...
2025-07-13
0
25
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页