题解 3008: 买笔 摘要:解题思路:要买最多的笔,肯定优先买4元最便宜的,当钱不够买4元笔的时候就撤回之前买的一些笔。转而买5元和6元的笔让钱凑到零注意事项:可以定义多个变量参考代码:方法一:(if语句)#include <i…… 题解列表 2024年01月15日 0 点赞 0 评论 626 浏览 评分:0.0
关于选数异或问题的几种解答及相关讨论。 解题思路:关于此题,没来没当回事,所以使用了比较暴力的做法。然后经历了空间超限、时间超限等问题,下面是三种解法。注意事项:参考代码:/*第一份代码,此份代码思维简单粗暴,但空间超限仅为只过了两份数据,但时间消耗小*/#include#includeusingname 题解列表 2024年01月15日 1 点赞 0 评论 1790 浏览 评分:9.7
2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a; cin>>a; …… 题解列表 2024年01月15日 0 点赞 0 评论 403 浏览 评分:9.9
2819: 数字反转 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n, s = 0; cin >> n; while (n) …… 题解列表 2024年01月15日 0 点赞 3 评论 334 浏览 评分:9.9
3013: 求小数的某一位 摘要:解题思路:注意事项:这里的cout要在外面写a的值可以改变参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long lo…… 题解列表 2024年01月15日 0 点赞 0 评论 483 浏览 评分:9.9
题解 1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n; cin>>n; fo…… 题解列表 2024年01月15日 0 点赞 0 评论 459 浏览 评分:9.9
题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long m,n,gcd=0; cin>…… 题解列表 2024年01月15日 0 点赞 0 评论 423 浏览 评分:9.9
2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long k; double s=0…… 题解列表 2024年01月15日 0 点赞 1 评论 465 浏览 评分:9.9
1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:此题需要把算式写出来参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n; …… 题解列表 2024年01月15日 0 点赞 0 评论 426 浏览 评分:9.9
1328: 移动服务员 #1328:移动服务员是一道比较经典的入门题dp。```cpp/**题目1328:移动服务员*很容易设计出两种dp数组dp[轮数][服务员数量][服务员位置],dp[轮数][服务员1位置][服务员2位置][服务员3位置]*如果是dp[轮数][服务员数量][服务员位置]。 题解列表 2024年01月15日 0 点赞 0 评论 567 浏览 评分:6.0