The Kth great number 摘要:#include<bits/stdc++.h>#definedebuga(v,i)cout<<#v<<"["<<i<<&…… 题解列表 2024年11月17日 0 点赞 0 评论 16 浏览 评分:0.0
C++ 计算器 模拟题 摘要:#include&nbsp;<bits/stdc++.h>#define&nbsp;debuga(v,&nbsp;i)&nbsp;cout&nbsp…… 题解列表 2024年11月17日 0 点赞 0 评论 12 浏览 评分:0.0
链表的创建 摘要:#include&nbsp;<bits/stdc++.h>#define&nbsp;debuga(v,&nbsp;i)&nbsp;cout&nbsp…… 题解列表 2024年11月16日 0 点赞 0 评论 10 浏览 评分:0.0
C++STL 十进制 转 任意进制 摘要:#include&nbsp;<bits/stdc++.h>#define&nbsp;debuga(v,&nbsp;i)&nbsp;cout&nbsp…… 题解列表 2024年11月16日 0 点赞 0 评论 8 浏览 评分:0.0
通过数组还有循环 摘要:解题思路://1009输入一个不多于五位的整数,输出位数,每一位,倒序输出//通过while循环判断该数的位数,再通过循环存取每一位元素和求其倒序注意事项:参考代码:intN,count=0,a[5]…… 题解列表 2024年11月16日 0 点赞 0 评论 56 浏览 评分:0.0
蓝桥杯算法提高VIP-排队打水问题,贪心 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"using&nbsp;namespace&nbsp;std;int&nbsp;m…… 题解列表 2024年11月16日 0 点赞 0 评论 36 浏览 评分:0.0
蓝桥杯历届试题-翻硬币,这真的是比赛题吗? 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"using&nbsp;namespace&nbsp;std;int&nbsp;m…… 题解列表 2024年11月16日 0 点赞 0 评论 31 浏览 评分:0.0
c++小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){intn,m,z,i=1;while(cin>>n){…… 题解列表 2024年11月16日 0 点赞 0 评论 9 浏览 评分:0.0
发工资咯,简单贪心 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"using&nbsp;namespace&nbsp;std;int&nbsp;m…… 题解列表 2024年11月16日 0 点赞 0 评论 35 浏览 评分:0.0
蓝桥杯2024年第十五届决赛真题-数位翻转 摘要:解题思路:自行dp出来了将区间分为翻转区间与非翻转区间,区间总数是2*m+1数组元素分为状态翻转0与未翻转1它们之间的相互切换,转移为区间数+1堆积与rotate间的差值和为最优解注意事项:参考代码:…… 题解列表 2024年11月16日 0 点赞 0 评论 41 浏览 评分:0.0