粉詹眉
粉詹眉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
粉詹眉的博客
全部文章
(共128篇)
题解 | #skew数#
#include <iostream> #include <cmath> using namespace std; int main() { string str; while(cin>>str){ int res=0; ...
2024-02-05
0
151
题解 | #全排列#
#include <cstring> #include <iostream> using namespace std; const int N=7; bool vis[N]; char chs[N]; char p[N]; void dfs(int u){ if(...
2024-02-04
0
149
题解 | #大整数的因子#
#include <iostream> #include <vector> #include <algorithm> using namespace std; vector<int> div(vector<int> &A,int ...
2024-02-04
0
171
题解 | #小白鼠排队#
#include <iostream> #include <algorithm> using namespace std; const int N=110; struct mouse{ int w; string color; bool operat...
2024-02-04
0
137
题解 | #中位数#
#include <iostream> #include <algorithm> using namespace std; const int N=10010; int a[N]; int main() { int n; while(cin>>n...
2024-02-04
0
158
题解 | #N的阶乘#
#include <iostream> #include <vector> using namespace std; const int N = 1010; vector<int> f[N];//存储每个数的阶乘 vector<int> mul(v...
2024-02-04
0
183
题解 | #最简真分数#
#include <iostream> using namespace std; //如果两个数的最大公因子是1,则两个数可以组成最简真分数 const int N=610; int a[N]; int n; //判断两个数有没有公因子 int gcd(int a,int b){ ...
2024-02-04
0
125
题解 | #最简真分数#
#include <iostream> using namespace std; const int N=610; int a[N]; int n; bool is_gcd(int a,int b){ if(a>b) swap(a,b);//a<b for(...
2024-02-04
0
156
题解 | #密码翻译#
#include <iostream> using namespace std; int main() { string str; getline(cin,str); for(int i=0;i<str.size();i++){ //起始地...
2024-02-04
0
149
题解 | #密码翻译#
#include <iostream> using namespace std; int main() { string str; getline(cin,str); for(int i=0;i<str.size();i++){ if(st...
2024-02-04
0
156
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页