蓝桥杯算法提高VIP-班级排名-题解(C++代码),太坑了,这个题目,不说明白,导致错了好多次 摘要:一般的错误都是在这里,就是比如第二次的排名,是要加上第一次分数,才是第二次的分数,所以这里一般人都会错的 ```cpp #include using namespace std; typede…… 题解列表 2020年04月28日 0 点赞 0 评论 316 浏览 评分:0.0
1546: 蓝桥杯算法提高VIP-班级排名(python) 摘要:解题思路:注意事项:参考代码:n=int(input()) dic={} for i in range(n): dic[input()]=0 m=int(input()) for i…… 题解列表 2022年04月20日 0 点赞 0 评论 202 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C++代码) 摘要:写了很久这题,一直没看到时总分的排名,提交一直错误,读了好几遍题目才看到#include"iostream" #include "string" #include "algorithm" usi…… 题解列表 2018年08月05日 1 点赞 0 评论 572 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C++代码) 摘要:解题思路:看清楚题目,哎,总分排名。注意事项:参考代码:#include <bits/stdc++.h> using namespace std; typedef struct { int …… 题解列表 2019年01月12日 0 点赞 0 评论 545 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <vector>#include <algorithm>#include <string>#include <st…… 题解列表 2018年10月05日 0 点赞 0 评论 658 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<malloc.h>//对成绩进行排名,并输出DaDa的排名int paiming(…… 题解列表 2018年01月22日 0 点赞 0 评论 932 浏览 评分:0.0
蓝桥杯算法提高VIP-班级排名-题解(Python代码) 摘要:解题思路:注意事项:参考代码:score={} n=int(input()) for i in range(n): name=input() score[nam…… 题解列表 2020年07月25日 0 点赞 0 评论 266 浏览 评分:0.0