[STL训练]{A} + {B},纯循环思路清晰 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"using namespace std;int m…… 题解列表 2024年11月11日 0 点赞 0 评论 28 浏览 评分:0.0
set集合的使用(插入与遍历) 摘要:#include<bits/stdc++.h>using namespace std;int main(){int …… 题解列表 2024年07月29日 0 点赞 0 评论 26 浏览 评分:0.0
太难了我不想打代码[STL训练]{A} + {B} 摘要:解题思路:set容器可以排序、去重、所以用它太几把合适了,先这样,在那样,最后那样,然后他妈的发现错了注意事项: 注意进厂时机!!!参考代码:…… 题解列表 2023年06月07日 0 点赞 0 评论 80 浏览 评分:0.0
2065: [STL训练]{A} + {B}(set) 摘要:解题思路:set集合自带默认升序和去重功能。参考代码:#include <bits/stdc++.h>#define ll long&…… 题解列表 2022年07月07日 0 点赞 0 评论 153 浏览 评分:9.9
[STL训练]{A} + {B} 摘要:解题思路:很简单,自己看。注意事项:set头文件:#include<set> 定义:set<typename>name;  …… 题解列表 2022年02月27日 0 点赞 0 评论 156 浏览 评分:0.0
Hifipsysta-2065-[STL训练]{A} + {B}(C++代码) 摘要:```cpp#include#include#includeusingnamespacestd;intmain(){intn,m,tmp;while(cin>>n>>m){se…… 题解列表 2022年02月10日 0 点赞 0 评论 163 浏览 评分:0.0
只需注意set_union的使用方法 摘要:```cpp#include#include#includeusingnamespacestd;voidmyPrint(intval)//for_each遍历的输出{coutnum1>>n…… 题解列表 2022年02月04日 0 点赞 0 评论 227 浏览 评分:9.9
[STL训练]{A} + {B}(用STL中的set) 摘要:#用STL中的set求解```cpp#includeusingnamespacestd;intmain(){sets;inttmp,s1;while(cin>>s1){tmp=s1;cin…… 题解列表 2021年05月13日 0 点赞 0 评论 233 浏览 评分:0.0
[STL训练]{A} + {B}-题解(C++代码)只做最好的思路! 摘要:这题本质上依然是求交集,在之前总结过,像求交集这类问题,难免会遇到让你来保留两个数组中的不同元素这个卡点,仅用循环是无法通过的,必须要用指针或者迭加器(两者用法一样,迭加器更方便且不易出错!)我自己作…… 题解列表 2020年03月17日 0 点赞 0 评论 511 浏览 评分:9.9
[STL训练]{A} + {B}-题解(C++代码) 摘要:可以当做连续的输入,然后用set的迭代器输出。```#includeusingnamespacestd;intmain(){sets;intn,m,t;while(cin>>n>&g…… 题解列表 2019年09月27日 0 点赞 0 评论 747 浏览 评分:9.9