2915: 接水问题 摘要:```cpp #include using namespace std; int main() { int n,m,w[10000],x[10000],s=1,max=0; …… 题解列表 2023年01月10日 0 点赞 1 评论 351 浏览 评分:7.3
2923: 病人排队 摘要:```cpp #include using namespace std; typedef struct a { char m[20]; int age; }T; int…… 题解列表 2023年01月10日 0 点赞 0 评论 440 浏览 评分:9.9
蓝桥杯算法训练VIP-字符串编辑-python 摘要:解题思路:注意事项:参考代码:def Delete(s,arg): try: index=s.index(arg) string1=s[0:index] …… 题解列表 2023年01月10日 0 点赞 0 评论 313 浏览 评分:0.0
【Python题解】Poker排序 摘要:解题思路:利用列表的 list.sort(key=(lambda)) 方法,具体见代码注释。参考代码:s = input().replace('10', 't') #…… 题解列表 2023年01月10日 0 点赞 0 评论 378 浏览 评分:9.9
2177: 信息学奥赛一本通T1252-走迷宫 摘要:```cpp #include #include using namespace std; const int S=41; struct node { int x,y,l; }…… 题解列表 2023年01月10日 0 点赞 0 评论 338 浏览 评分:9.9
2847: 找第一个只出现一次的字符 摘要:```cpp #include #include using namespace std; int main() { char ch[1000000],letter[26],let…… 题解列表 2023年01月10日 0 点赞 0 评论 541 浏览 评分:9.9
【Python题解】蓝桥杯算法提高VIP-删除重复元素 摘要:解题思路:利用列表的copy()和remove()方法。参考代码:s = list(input()) for i in s: temp = s.copy() temp.remov…… 题解列表 2023年01月10日 0 点赞 0 评论 307 浏览 评分:9.9
二级C语言-统计字符(水题) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[100]; int i,a=0,b=0,c=0,d=0; gets(s); for(i=0;s[…… 题解列表 2023年01月10日 0 点赞 0 评论 357 浏览 评分:9.9
二级C语言-阶乘数列(水题) 摘要:解题思路:注意事项:unsigned long long 放不下,用double放参考代码:#include <stdio.h>double f(int n){ if(n==1) return …… 题解列表 2023年01月10日 0 点赞 0 评论 416 浏览 评分:9.9
【Python题解】蓝桥杯算法提高VIP-幸运顾客 摘要:参考代码:N = int(input()) lis = [] # 保存幸运号 count = 0 # 记抽号天数 result = [] # 保存输出结果 题解列表 2023年01月10日 1 点赞 0 评论 312 浏览 评分:9.9