蓝桥杯算法提高VIP-邮票面值设计 摘要:```cpp #include #include #include using namespace std; int n, k,ans; int a[15], dp[10005];//dp…… 题解列表 2022年03月28日 0 点赞 0 评论 635 浏览 评分:10.0
某人看见没有题解表示不满给个参考 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<algorithm>using namespace std;const int N…… 题解列表 2022年04月04日 0 点赞 0 评论 595 浏览 评分:10.0
数据结构-字符串插入[c 语言] 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> // 字符串插入 int main(int argc, char *argv[])…… 题解列表 2022年04月05日 0 点赞 0 评论 784 浏览 评分:10.0
优质题解 爱琴海——芯片测试——超详细注释 摘要:解题思路:已知好芯片比坏芯片多。所以我们要取中间数,每列相加,大于中间数的话就是好芯片注意事项:好芯片比坏芯片多参考代码:#include<stdio.h> int main() { floa…… 题解列表 2022年04月07日 1 点赞 4 评论 988 浏览 评分:10.0
信息学奥赛一本通T1252-走迷宫 —— Python首发 BFS广度优先搜索 (Python代码) 摘要:##### 先上代码: ```python from queue import Queue as Qu class BFSNode(): # 节点 def __init__(sel…… 题解列表 2022年04月18日 0 点赞 2 评论 955 浏览 评分:10.0
优质题解 1076: 内部收益率 摘要:解题思路:(1)首先优质题解第一那位的代码是有问题的,我在 debug 卡住的时候试了一下他的代码,结果原封不动贴到 IDE 输出的和标准答案不符。(2)那个兄弟的问题好像是把“判断 NPV 是否接近…… 题解列表 2022年04月23日 1 点赞 2 评论 1209 浏览 评分:10.0
蓝桥杯算法提高VIP-进制转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%X",&n); pr…… 题解列表 2022年05月07日 0 点赞 0 评论 433 浏览 评分:10.0
蓝桥杯算法提高VIP-输入输出格式练习 题解(c++语言) 摘要:解题思路:按题目格式输入输出就可以了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a;double b;char ch;int…… 题解列表 2022年05月17日 0 点赞 0 评论 428 浏览 评分:10.0
[编程入门]C语言循环移位 摘要:解题思路:注意事项:参考代码://程序名:新的C++程序//作者: #include<iostream>#include<fstream>#include<algorithm>using namesp…… 题解列表 2022年05月19日 0 点赞 0 评论 502 浏览 评分:10.0
题目有歧义 摘要:解题思路:注意事项:一球从M米高度自由下落,每次落地后返回原高度的一半,再落下。 它在第N次落地时反弹多高?(程序只算到第N次下落的总路程)共经过多少米?(这里要不要包含最后第N次反弹的高度????,…… 题解列表 2022年05月23日 0 点赞 1 评论 540 浏览 评分:10.0