2916: 谁考了第k名 (结构体+sort函数) 摘要:解题思路: 1.定义结构体 2.循环输入数据 3.sort排序 4.输出第k名注意事项:参考代码:#include <bits/stdc++.h> using namespace std; …… 题解列表 2023年05月23日 0 点赞 0 评论 488 浏览 评分:0.0
题目 1216: 成绩转换题解 摘要:参考代码:#include<iostream> using namespace std; int main(){ int score; while(cin>>score){ …… 题解列表 2023年05月23日 0 点赞 0 评论 421 浏览 评分:0.0
题目 1213: 幸运儿题解 摘要:参考代码:#include<iostream> using namespace std; int n; bool flag[100]; bool f(){ int num=0; …… 题解列表 2023年05月23日 0 点赞 0 评论 408 浏览 评分:0.0
优质题解 蓝桥杯2016年第七届真题-密码脱落(区间DP) 摘要:### 题目大意 给定一个字符串,最少插入多少的字符可以使得字符串变成`回文串` ### 解题思路 思想:区间DP 状态定义:$$f[l][r]$$ 表示把从$$l$$ 到$$r$$的…… 题解列表 2023年05月22日 0 点赞 1 评论 907 浏览 评分:9.9
利用map的有序性来计数 摘要:```c++ #include #include using namespace std; int main(){ map mmap; string s; cin >> s…… 题解列表 2023年05月22日 1 点赞 0 评论 492 浏览 评分:9.9
2001看似很简单的三角形判断,其实很简单 摘要:解题思路:正常if判断a*a=b*b+c*c就行,但是有一点问题就是,要是顺序不对就会出错。比如 3 4 5 就是3*3+4*4==5*5 答案是正确的,但如果输入的是 5 3 4 就会5*5+…… 题解列表 2023年05月21日 0 点赞 2 评论 571 浏览 评分:9.9
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s)…… 题解列表 2023年05月21日 0 点赞 0 评论 399 浏览 评分:0.0
2896: 二维数组右上左下遍历 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int row,col; int a[150][150]; int i…… 题解列表 2023年05月20日 1 点赞 0 评论 431 浏览 评分:8.0
2895: 反反复复 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,len,hang,lie,num=0; int i,j; …… 题解列表 2023年05月20日 0 点赞 1 评论 491 浏览 评分:9.9
编写题解 2912: 最长平台 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int findLongestPlateau(int arr[], int…… 题解列表 2023年05月20日 0 点赞 0 评论 534 浏览 评分:6.8