lyw菌
lyw菌
全部文章
分类
归档
标签
去牛客网
登录
/
注册
lyw菌的博客
全部文章
(共69篇)
题解 | #大整数的因子#
//除法的原理,KY26和KY30都用到了,如果上述两题会,这道题还是比较简单的 #include "stdio.h" #include "string" using namespace std; char num[31];string str; string divsionJudge(){ ...
2023-03-08
0
338
题解 | #Candy Sharing Game#
//每次循环交换时,若手中糖果为奇数,则多的那一个留给自己。题比较简单,但是题意没有讲清楚 #include "stdio.h" #include "queue" using namespace std; int student[1000];//记录学生的糖果数,从student[1]开始 bool...
2023-03-07
0
279
题解 | #小白鼠排队#
//sort函数即可,需要用到函数指针 #include "stdio.h" #include "algorithm" using namespace std; struct mouse{ int weight; char color[11]; }; bool compare(mou...
2023-03-07
0
319
题解 | #中位数#
//知道sort后这题就简单多了,而且还是O(log2N)的复杂度#include "stdio.h"#include "algorithm"using namespace std;int main(){ int N;int num[10001]; ...
2023-03-07
0
296
题解 | #进制转换#
//KY_26会了,这道题就很简单。模拟竖式除法即可 #include "stdio.h" #include "string" #include "algorithm" using namespace std; string conversion(string num){//十进制转二进制 ...
2023-03-07
0
261
题解 | #谁是你的潜在朋友#
#include "stdio.h"#include "vector"using namespace std;int main(){ int N,M;//N为读者数,M为图书数 int student[210];//记录每个学生喜欢的图书号&nbs...
2023-03-07
0
278
题解 | #10进制 VS 2进制#
//一个int型数a(建设为5),a+'0'为53,所以此时若想表示‘5’,则应用char强制类型转换,若用to_string则为”53“ #include "stdio.h" #include "string" #include "algorithm" using namespace std; s...
2023-03-07
0
304
题解 | #N的阶乘#
//推荐博客https://www.cnblogs.com/wuqianling/p/5387099.html,讲的很好 //字符串大数乘法,加法有些笛卡尔积的思想 #include "stdio.h" #include "string" #define MAX 4010 using namespa...
2023-03-06
0
297
题解 | #特殊乘法#
#include "stdio.h" using namespace std; int main(){ int num1,num2; while (scanf("%d%d",&num1,&num2)!=EOF) { int count1=0,count2=0;//c...
2023-03-05
0
239
题解 | #今年的第几天?#
//利用数组存储每月日数,即空间换时间 #include "stdio.h" int main(){ int year,mouth,day; int map[13] = {0,31,28,31,30,31,30, 31,31,30,31,30,3...
2023-03-05
0
247
首页
上一页
1
2
3
4
5
6
7
下一页
末页