c++递增三元组 排序+二分 摘要:解题思路:将 ai<bj<ck 拆成两个式子 bj>ai 和 bj<ck; 所以只需要枚举j即可再用二分找出边界注意事项:参考代码:#include<bits/stdc++.h>#define int…… 题解列表 2024年04月06日 0 点赞 0 评论 123 浏览 评分:0.0
c++小白,暴力ac 摘要:解题思路:注意事项:参考代码://#include<iostream>//using namespace std;//int a[1000], b[1000], c[1000];//int main(…… 题解列表 2024年12月03日 0 点赞 0 评论 33 浏览 评分:0.0
暴力解题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年第九届真题-递增三元组-题解(C++代码) 摘要: 数据有问题 ```cpp #ifndef LOCAL #include #endif typedef long long LL; using namespace std; …… 题解列表 2019年12月10日 0 点赞 0 评论 568 浏览 评分:6.0
蓝桥杯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
蓝桥杯2018年第九届真题-递增三元组 (C++代码)最易懂的解题方式 时间复杂度n2 摘要: upper_bound函数(返回第一个大于所查询值的地址) #include #include #include usin…… 题解列表 2020年01月30日 0 点赞 1 评论 578 浏览 评分:6.0
我不是张玉想——递增三元组-题解(C++代码) 摘要:## 一、解题思路: 将数组A、B、C初始化后,将A从大到小排序,B排不排序无所谓,C从小到大排序 ![](/image_editor_upload/20200902024257_49051.pn…… 题解列表 2020年09月02日 0 点赞 0 评论 652 浏览 评分:7.3
蓝桥杯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
蓝桥杯2018年第九届真题-递增三元组-题解(C++代码) 摘要:### 解题思路:预处理前缀和,当前数前有多少个数比他小,然后可以求出比位置i的数b[i]的数,大的数也是同理,最后把每一个位置小的数的个数乘以大的数的个数即可 ```cpp #include…… 题解列表 2020年10月12日 0 点赞 0 评论 626 浏览 评分:9.3
蓝桥杯2018年第九届真题-递增三元组 摘要:做法1:暴力枚举 首先考虑暴力做法,三个数组嵌套枚举,O(n3)的时间复杂度#include <iostream> #include <cstring> #include <cstdio> …… 题解列表 2024年03月09日 0 点赞 0 评论 124 浏览 评分:9.9