1106: 奖学金 ——sort 摘要:解题思路:注意事项:sort() 函数用于对容器中的元素进行排序,而排序的规则则由一个比较函数来定义。这个比较函数通常会传入两个元素(在我们的例子中是学生对象),并返回一个布尔值定义了一个 compa…… 题解列表 2024年11月13日 5 点赞 0 评论 498 浏览 评分:0.0
代码如下: 摘要:解题思路: 太简单了注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main() { string s; int…… 题解列表 2024年11月13日 0 点赞 0 评论 192 浏览 评分:0.0
加工生产调度 摘要: //这类生产加工题型记住了 #include using namespace std; const int N=10001; struct node{…… 题解列表 2024年11月13日 0 点赞 0 评论 240 浏览 评分:0.0
线段(贪心) 摘要: #include using namespace std; const int N=1e6+10; struct node{ int…… 题解列表 2024年11月13日 0 点赞 0 评论 266 浏览 评分:9.9
小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string s, s2; …… 题解列表 2024年11月13日 0 点赞 0 评论 175 浏览 评分:0.0
[STL训练]百步穿杨........ 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义结构体aaa,包含两个整数成员c和k struct aaa{ …… 题解列表 2024年11月12日 0 点赞 0 评论 154 浏览 评分:0.0
string的find函数 #2304: 蓝桥杯2019年第十届省赛真题-特别数的和 摘要:``` #define _CRT_SECURE_NO_WARNINGS 1 #include #include #include #include #include #include …… 题解列表 2024年11月12日 0 点赞 0 评论 149 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (*>.<*) 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; void Add (int a[], int m, int b[], int…… 题解列表 2024年11月12日 0 点赞 0 评论 156 浏览 评分:0.0
1207: 字符排列问题(排列组合的思想,合理利用全排列) 摘要:对于该题,通过排列组合的方法简单易懂注意:对于n个数的全排列的最多种类即为n!(n的阶乘)因为给出的数据有重复的字母,而重复的字母会对全排列的种类有影响思路: 以本题所给数据为例:输入四个字…… 题解列表 2024年11月12日 0 点赞 0 评论 394 浏览 评分:9.9
[STL训练]寻梦,无STL纯循环解法! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义整数变量a int a;…… 题解列表 2024年11月12日 0 点赞 0 评论 206 浏览 评分:0.0