蓝桥杯算法提高VIP-邮票面值设计 摘要:```cpp #include #include #include using namespace std; int n, k,ans; int a[15], dp[10005];//dp…… 题解列表 2022年03月28日 0 点赞 0 评论 657 浏览 评分:10.0
某人看见没有题解表示不满给个参考 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<algorithm>using namespace std;const int N…… 题解列表 2022年04月04日 0 点赞 0 评论 610 浏览 评分:10.0
数据结构-字符串插入[c 语言] 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> // 字符串插入 int main(int argc, char *argv[])…… 题解列表 2022年04月05日 0 点赞 0 评论 812 浏览 评分:10.0
[编程入门]宏定义练习之三角形面积(小白超容易上手) 摘要:解题思路:注意事项:参考代码:注意导入库 mathimport math a,b,c=map(int,input().split())#如果又要实现对整数进行每数字空一格 那么map().split…… 题解列表 2022年04月06日 2 点赞 0 评论 1469 浏览 评分:10.0
优质题解 爱琴海——芯片测试——超详细注释 摘要:解题思路:已知好芯片比坏芯片多。所以我们要取中间数,每列相加,大于中间数的话就是好芯片注意事项:好芯片比坏芯片多参考代码:#include<stdio.h> int main() { floa…… 题解列表 2022年04月07日 1 点赞 4 评论 1015 浏览 评分:10.0
信息学奥赛一本通T1252-走迷宫 —— Python首发 BFS广度优先搜索 (Python代码) 摘要:##### 先上代码: ```python from queue import Queue as Qu class BFSNode(): # 节点 def __init__(sel…… 题解列表 2022年04月18日 0 点赞 2 评论 977 浏览 评分:10.0
优质题解 1076: 内部收益率 摘要:解题思路:(1)首先优质题解第一那位的代码是有问题的,我在 debug 卡住的时候试了一下他的代码,结果原封不动贴到 IDE 输出的和标准答案不符。(2)那个兄弟的问题好像是把“判断 NPV 是否接近…… 题解列表 2022年04月23日 1 点赞 2 评论 1233 浏览 评分:10.0
蓝桥杯算法提高VIP-进制转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%X",&n); pr…… 题解列表 2022年05月07日 0 点赞 0 评论 447 浏览 评分:10.0
1041: [编程入门]宏定义之找最大数 摘要:import java.io.*; import java.util.Arrays; public class Main { public static BufferedReader…… 题解列表 2022年05月13日 0 点赞 0 评论 442 浏览 评分:10.0
蓝桥杯算法提高VIP-输入输出格式练习 题解(c++语言) 摘要:解题思路:按题目格式输入输出就可以了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a;double b;char ch;int…… 题解列表 2022年05月17日 0 点赞 0 评论 456 浏览 评分:10.0