十五届省赛真题-R 格式 摘要:解题思路:找到小数点位置并移除小数点移除前导0将字符串转换为整数数组通过n次乘以2来实现乘以2^n计算新的小数点位置进行四舍五入操作截断小数部分,只保留整数部分输出结果参考代码:#include&nb…… 题解列表 2025年04月03日 0 点赞 0 评论 4 浏览 评分:0.0
生日日数(模拟) 摘要:解题思路:模拟注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;boolisleap(int…… 题解列表 2025年04月03日 0 点赞 0 评论 2 浏览 评分:0.0
班级人数(模拟) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){ d…… 题解列表 2025年04月03日 0 点赞 0 评论 3 浏览 评分:0.0
1014: 阶乘求和题解(递归) 摘要:**解题思路:** 使用递归的方法定义一个求阶乘的函数来计算。**注意事项:** 需要将 int 整形改为 long long int 长整形型,否则可能出现测试 2 答案错误的情况。…… 题解列表 2025年04月03日 0 点赞 0 评论 7 浏览 评分:0.0
信息学奥赛一本通T1279-橱窗布置 dfs+剪枝 摘要:解题思路:由于本人不会dp所以来一发dfs解题,哈哈哈注意事项:参考代码:#include"bits/stdc++.h"usingnamespacest…… 题解列表 2025年04月03日 0 点赞 0 评论 9 浏览 评分:0.0
演讲大赛评分 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){ i…… 题解列表 2025年04月03日 0 点赞 0 评论 9 浏览 评分:0.0
求组合数(模拟) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;constintN&…… 题解列表 2025年04月03日 0 点赞 0 评论 6 浏览 评分:0.0
母牛生小牛(递推) 摘要:解题思路:第i天牛的数量等于前一天牛的数量(f[i-1]) 加上第i天新下的牛(f[i-3])注意事项:参考代码:#include<bits/stdc++.h>usingn…… 题解列表 2025年04月03日 0 点赞 0 评论 3 浏览 评分:0.0
编写题解 1461: 蓝桥杯基础练习VIP-FJ的字符串 摘要:` #include #include #include #include #include using namespace…… 题解列表 2025年04月03日 0 点赞 0 评论 7 浏览 评分:0.0
编写题解 1032: [编程入门]自定义函数之字符串连接 摘要: #include #include #include #include #include using namespace std;…… 题解列表 2025年04月03日 0 点赞 0 评论 8 浏览 评分:0.0