宁静的冬日
宁静的冬日
全部文章
分类
python学习(4)
代码笔记(4)
题解(83)
归档
标签
去牛客网
登录
/
注册
宁静的冬日的博客
全部文章
(共91篇)
题解 | #最简真分数#
C++ 题目没说:输入0结束 #include<iostream> #include<string> #include<algorithm> #define MAX 600 using namespace std; int a[MAX + 1]; //判断是否...
C++
2022-03-07
0
411
题解 | #密码翻译#
C++ #include<iostream> #include<string> #include<algorithm> using namespace std; int main() { string s = "Program Start"; while (...
C++
2022-03-07
0
326
题解 | #Ws Cipher#
C++ 有一组测试样例是错的,可以在自己的代码里加上如下片段: if (k1 == 28 && k2 == 15 && k3 == 74&&s == "nobhyeiuwnr_l___yptwsobmfzimu_hzgjw_bqzx") { ...
C++
2022-03-07
0
387
题解 | #谁是你的潜在朋友#
C++ ">#include<string> #include<cstring> #include<algorithm> int h[201]; int n[201]; using namespace std; int main() { int N, M...
C++
2022-03-07
0
324
题解 | #进制转换#
C++ 这题简单 ">#include<string> #include<algorithm> using namespace std; //对s除以2 string div2(string s) { //cout << "div2输入:s=" <<...
C++
2022-03-07
0
364
题解 | #加减乘除#
">#include<string> #include<algorithm> using namespace std; #define MAX 100 //阶乘 long long int f1(int n) { long long int res = 1; for (i...
C++
2022-03-06
0
396
题解 | #位操作练习#
C++ ">#include<string> #include<algorithm> using namespace std; #define MAX 100 string trans(int a) { string s = ""; while (a != 0) { ...
C++
2022-03-06
0
399
题解 | #吃糖果#
C++ ">#include<string> #include<algorithm> using namespace std; #define MAX 100 int dp[21]; void initDpArray() { dp[1] = 1; dp[2] = 2; ...
C++
2022-03-06
1
406
题解 | #放苹果#
【C++】本题可以直接用递归,深度浅,不需要动态规划 ">#include<string> #include<algorithm> using namespace std; #define MAX 100 //求m个苹果放n个盘子中的方法数 int ways(int m, i...
C++
2022-03-06
4
650
题解 | #小白鼠排队#
C++ ">#include<string> #include<algorithm> using namespace std; #define MAX 100 struct Mouse { int w;//重量 string cap;//帽子颜色 }m[MAX+1]; b...
C++
2022-03-06
0
297
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页