解题思路:
lower_bound( )和upper_bound( )都是利用二分查找的方法在一个排好序的数组中进行查找的。
1、在从小到大的排序数组中,
lower_bound( begin,end,num):从数组的begin位置到end-1位置二分查找第一个大于或等于num的数字,找到返回该数字的地址,不存在则返回end。通过返回的地址减去起始地址begin,得到找到数字在数组中的下标。
upper_bound( begin,end,num):从数组的begin位置到end-1位置二分查找第一个大于num的数字,找到返回该数字的地址,不存在则返回end。通过返回的地址减去起始地址begin,得到找到数字在数组中的下标。
2、在从大到小的排序数组中,重载lower_bound()和upper_bound()
lower_bound( begin,end,num,greater<type>() ):从数组的begin位置到end-1位置二分查找第一个小于或等于num的数字,找到返回该数字的地址,不存在则返回end。通过返回的地址减去起始地址begin,得到找到数字在数组中的下标。
upper_bound( begin,end,num,greater<type>() ):从数组的begin位置到end-1位置二分查找第一个小于num的数字,找到返回该数字的地址,不存在则返回end。通过返回的地址减去起始地址begin,得到找到数字在数组中的下标。
注意事项:
参考代码:
#include <iostream> #include <algorithm> using namespace std; int n = 1, a[100005], nup[100005], up[100005], len = 1, cnt = 1; bool cmp(int x, int y) { return x > y; } int main() { while (cin >> a[n]) n++; nup[1] = up[1] = a[1]; for (int i = 2; i < n; ++i) { if (nup[len] >= a[i]) nup[++len] = a[i]; else nup[upper_bound(nup + 1, nup + len + 1, a[i], cmp) - nup] = a[i]; if (up[cnt] < a[i]) up[++cnt] = a[i]; else up[lower_bound(up + 1, up + cnt + 1, a[i]) - up] = a[i]; } cout << len << endl << cnt << endl; return 0; }
0.0分
5 人评分
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:717 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:674 |
C语言训练-数字母 (C语言代码)浏览:610 |
整数平均值 (C语言代码)浏览:856 |
简单的a+b (C语言代码)浏览:857 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:692 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:587 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:490 |
1073题解浏览:652 |