SStarry
SStarry
全部文章
分类
归档
标签
去牛客网
登录
/
注册
SStarry的博客
全部文章
(共25篇)
题解 | #旋转矩阵# 二维数组的调用
#include <iostream> using namespace std; const int N = 10; int n; int a[N][N], b[N][N]; bool fn(int x[N][N], int y[N][N]) //写x[n][n], y[n][n]...
2023-09-08
0
269
题解 | #遍历链表# 链表
#include <iostream> using namespace std; int n; struct Node{ int data; Node* next; Node(int x): data(x), next(NULL){} }; int main...
2023-09-06
0
232
题解 | #排列与二进制# 需要找规律
#include <iostream> #include <vector> using namespace std; int n, m; // vector<int> mul(vector<int> &a, int b) //使用乘法超...
2023-09-06
0
336
题解 | #搬水果# 小根堆
#include <iostream> #include <vector> #include <queue> using namespace std; int n; int main() { while(cin >> n &&...
2023-09-06
0
214
题解 | #A+B# 高精度加减,注意范围,写复杂了
#include <iostream> #include <vector> using namespace std; string s1, s2; vector<int> add(vector<int> &a, vector<int&...
2023-09-05
0
282
题解 | #密码锁# 恶心
#include <iostream> #include <queue> #include <unordered_map> #include <algorithm> using namespace std; int n; string s; str...
2023-09-05
0
352
题解 | #围圈报数# 队列解决 约瑟夫环问题
#include <iostream> #include <queue> using namespace std; int m, n; int main() { while(cin >> m) { while(m--) ...
2023-09-05
0
317
题解 | #Problem A# 第一次打表 新的做题思路
#include <iostream> using namespace std; int a, b; int res[4] = {6, 28, 496, 8128}; // bool is_wan(int x) // { // int sum = 0; // for(...
2023-09-04
0
260
题解 | #任务调度# 小根堆重载
#include <iostream> #include <vector> #include <queue> using namespace std; int n; struct Node{ int in; int point; }; boo...
2023-09-04
0
370
题解 | #玛雅人的密码# bfs + un_map
#include <iostream> #include <unordered_map> #include <queue> using namespace std; int n; string s; struct New_String{ string ...
2023-08-27
0
273
首页
上一页
1
2
3
下一页
末页