牛客652687585号
牛客652687585号
全部文章
分类
题解(56)
归档
标签
去牛客网
登录
/
注册
牛客652687585号的博客
全部文章
(共56篇)
题解 | #玛雅人的密码#
#include<iostream> #include<cstdio> #include<queue> #include<string> using namespace std; struct status { ...
C++
C
广度优先搜索
2022-04-24
0
411
题解 | #全排列#
#include<iostream> #include<cstdio> #include<string> using namespace std; void Print(string pattern, string...
C++
C
C++14
字符串
递归
2022-03-14
1
563
题解 | #n的阶乘#
#include<iostream> #include<cstdio> using namespace std; long long Factorial(int n){ if(n...
C++
C
C++14
递归
2022-03-14
0
363
题解 | #a+b#
#include<iostream> #include<cstdio> #include<cstring> #include<string> using namespace std; const int MAXN...
C++
C
C++14
数组
字符串
数学
2022-03-13
1
479
题解 | #矩阵幂#
#include<iostream> #include<cstdio> using namespace std; const int MAXN = 10; struct Matrix { &nbs...
C++
C
C++14
数学
矩阵位运算
数组
2022-03-07
0
459
题解 | #计算两个矩阵的乘积#
#include<iostream> #include<cstdio> using namespace std; const int MAXN=3; struct Matrix{  ...
C++
C
C++14
数组
矩阵位运算
2022-03-07
0
483
题解 | #求root(N, k)#
#include<iostream> #include<cstdio> using namespace std; int QuickPower(int x,int y,int n){  ...
C++
C
C++14
数组
数学
2022-03-06
2
525
题解 | #整除问题#
#include<iostream> #include<cstdio> #include<vector> #include<cstring> using namespace std; const int MAXN...
C++
C
C++14
数学
数组
2022-03-06
0
483
题解 | #约数的个数#
#include<iostream> #include<cstdio> #include<vector> using namespace std; const int MAXN=1000; const int&nb...
C++
C
C++14
数学
数组
2022-03-05
0
364
题解 | #质因数的个数#
#include<iostream> #include<cstdio> #include<vector> using namespace std; const int MAXN=4e4; bool IsPrime[...
C++
C
C++14
数组
数学
2022-03-05
0
486
首页
上一页
1
2
3
4
5
6
下一页
末页