lyw菌
lyw菌
全部文章
分类
归档
标签
去牛客网
登录
/
注册
lyw菌的博客
全部文章
(共69篇)
题解 | #进制转换#
//还以为会涉及到大数的问题,不过并没有。那这道题就直接换算就行了 #include "stdio.h" #include "string" #include "math.h" using namespace std; int main(){ char buf[100]; char...
2023-03-11
0
330
题解 | #浮点数加法#
//这道题比较麻烦但不难,如果掌握大数的加法乘法,那这道题就是代码多点 #include "stdio.h" #include "string" #include "algorithm" using namespace std; string addString1(string num1,stri...
2023-03-11
0
322
题解 | #拦截导弹#
//最长递减子序列问题,和LIS没什么区别 #include "stdio.h" using namespace std; int n; int missile[26];//记录导弹高度 int dp[26];//记录最长递减子序列长度 void Init(){ dp[1] = 1;int...
2023-03-11
0
281
题解 | #字符串排序#
/* * sort函数的使用。先把输入的字符串全部转为小写,大写转小写的信息和对应下标信息记录到对应的结构体中。 * 对结构体采用sort排序,并且下标小的还排到前面。 * 最后输出时按原先的字符串输出,若原字符串buf1[i]为字符则buf2输出一个字符,否则buf1输出buf1[i] *...
2023-03-10
0
335
题解 | #采药#
//经典的0-1背包问题 #include "stdio.h" #include "algorithm" using namespace std; int T,M;//T为总时间,M为草药株树 int plantTime[110]; int val[110]; int bag[110][1010];...
2023-03-10
0
376
题解 | #合唱队形#
#include "stdio.h" #include "climits" using namespace std; int n;//学生人数 int student[110];// 存储学生身高 int leftDP[110];//存储从左到右的最长上升子序列长度 int rightDP[110...
2023-03-10
0
377
题解 | #Primary Arithmetic#
//大意为每个测试用例给两个整数,计算这两个整数相加的过程中产生的总进位数。 //多个测试用例,最后一行的0,0不用算 /* *感觉用字符串做更方便些 */ #include "stdio.h" #include "string" #include "algorithm" using namesp...
2023-03-10
0
346
题解 | #Financial Management#
//测试用例有个错的,没有进位,应该是59.10才对 #include "stdio.h" int main(){ double array[12]; while (scanf("%lf",&array[0])!=EOF){ double sum = array[0...
2023-03-10
0
261
题解 | #点菜问题#
//经典0-1背包,采用动态规划的做法 #include "stdio.h" #include "algorithm" using namespace std; int main(){ int C,N; int price[110]; int credit[110]; ...
2023-03-10
0
248
题解 | #Biorhythms#
//代码还是比较简单的,按天数枚举即可,就是英文最后有些读不懂了,还是查的翻译... #include "stdio.h" int main(){ int physical,emotional,intellectual;//分别为记录对应的日期(今年第几天出现) int date;...
2023-03-10
0
390
首页
上一页
1
2
3
4
5
6
7
下一页
末页