c++小白,暴力ac 摘要:解题思路:注意事项:参考代码://#include<iostream>//using namespace std;//int a[1000], b[1000], c[1000];//int main(…… 题解列表 2024年12月03日 0 点赞 0 评论 33 浏览 评分:0.0
c++递增三元组 排序+二分 摘要:解题思路:将 ai<bj<ck 拆成两个式子 bj>ai 和 bj<ck; 所以只需要枚举j即可再用二分找出边界注意事项:参考代码:#include<bits/stdc++.h>#define int…… 题解列表 2024年04月06日 0 点赞 0 评论 122 浏览 评分:0.0
蓝桥杯2018年第九届真题-递增三元组 摘要:做法1:暴力枚举 首先考虑暴力做法,三个数组嵌套枚举,O(n3)的时间复杂度#include <iostream> #include <cstring> #include <cstdio> …… 题解列表 2024年03月09日 0 点赞 0 评论 124 浏览 评分:9.9
暴力解题111 摘要:### #include #include using namespace std; const int N=1100; int A[N],B[N],C[N]; int main() {…… 题解列表 2024年01月25日 0 点赞 0 评论 73 浏览 评分:0.0
[蓝桥杯2018年第九届真题-递增三元组] 排序 + 暴力枚举解法 和 双指针解法 摘要:解题思路: 1.先排序,再枚举每种情况就行 2.对于双指针,因为题目是要Ai < Bj < Ck, 所以只要找到A小于B的个数和C大于B的个数,用乘法原理得出答案。参考代…… 题解列表 2023年11月15日 0 点赞 0 评论 151 浏览 评分:9.9
蓝桥杯2018年第九届真题-递增三元组(很简洁易懂) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N = 1e5 + 7;int a[N];int b[N];in…… 题解列表 2022年08月06日 0 点赞 0 评论 145 浏览 评分:8.0
递增三元组——二分(c++) 摘要: 转了一圈发现没几个用二分的.... 思路很简单,我们先确定中间的数,b[i],然后分别二分查找比b[i]小的以及比b[i]大的数即可。我们可以在比b[i]小的数中,找到最大的数,那么比他小的数,…… 题解列表 2022年04月08日 0 点赞 0 评论 365 浏览 评分:9.9
蓝桥杯2018年第九届真题-递增三元组-题解(C++代码) 摘要:### 解题思路:预处理前缀和,当前数前有多少个数比他小,然后可以求出比位置i的数b[i]的数,大的数也是同理,最后把每一个位置小的数的个数乘以大的数的个数即可 ```cpp #include…… 题解列表 2020年10月12日 0 点赞 0 评论 626 浏览 评分:9.3
蓝桥杯2018年第九届真题-递增三元组-题解(C++代码) 摘要: ```cpp #include #include using namespace std; const int N = 1e5+5; int a[N],b[N],c[N]; boo…… 题解列表 2020年10月07日 0 点赞 0 评论 467 浏览 评分:6.0
我不是张玉想——递增三元组-题解(C++代码) 摘要:## 一、解题思路: 将数组A、B、C初始化后,将A从大到小排序,B排不排序无所谓,C从小到大排序 ![](/image_editor_upload/20200902024257_49051.pn…… 题解列表 2020年09月02日 0 点赞 0 评论 651 浏览 评分:7.3