离散化
知识点
离散化就是将无穷大集合中的若干个元素映射为有限集合以便于统计。
通常表现为取值范围非常大,但是数目比较有限,并且不关心数值的绝对大小(只把数值作为代表,或者只和它们的相对顺序有关),此时就可以把m个数映射为1~m,这样一来,时间、空间复杂度降至与m有关。
模板
// C++ STL写法
void discrete() {
vector<int> alls; // 存储所有待离散化的值
sort(alls.begin(), alls.end()); // 将所有值排序
alls.erase(unique(alls.begin(), alls.end()), alls.end()); // 去掉重复元素
}
// 二分求出x对应的离散化的值
int find(int x) // 找到第一个大于等于x的位置
{
int l = 0, r = m - 1;
while (l < r)
{
int mid = l + r >> 1;
if (alls[mid] >= x) r = mid;
else l = mid + 1;
}
return r + 1; // 映射到1, 2, ...n
}
// 通用写法
void discrete() {
sort(alls + 1, alls + n + 1);
for (int i = 1; i <= n; i++)
if (i == 1 || alls[i] != alls[i - 1])
alls[m++] = alls[i];
}
int query(int x) { // 或者像上面一样写一个二分
return lower_bound(alls, alls + m, x) - alls + 1;
}
习题
电影
如果只是用于计数的话,离散化没什么必要,直接用哈希表就好了,本质上是一样的
// 离散化
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 2e5 + 10;
int n, m, cnt, dcnt;
int a[N], b[N], c[N], all[3*N], dis[3*N], sum[3*N];
void discrete() {
sort(all, all + cnt);
for (int i = 0; i < cnt; i++) {
if (i == 0 || all[i] != all[i - 1])
dis[dcnt++] = all[i];
}
}
int query(int x) {
return lower_bound(dis, dis + dcnt, x) - dis;
}
int main() {
cin >> n;
for (int i = 0; i < n; i++) {
scanf("%d", &a[i]);
all[cnt++] = a[i];
}
cin >> m;
for (int i = 0; i < m; i++) {
scanf("%d", &b[i]);
all[cnt++] = b[i];
}
for (int i = 0; i < m; i++) {
scanf("%d", &c[i]);
all[cnt++] = c[i];
}
discrete();
for (int i = 0; i < n; i++) {
int id = query(a[i]);
sum[id]++;
}
int max1 = -1, max2 = -1, idx = -1;
for (int i = 0; i < m; i++) {
int id1 = query(b[i]), id2 = query(c[i]);
if (sum[id1] > max1) {
max1 = sum[id1];
max2 = sum[id2];
idx = i + 1;
}
else if (sum[id1] == max1 && sum[id2] > max2) {
max2 = sum[id2];
idx = i + 1;
}
}
cout << idx;
return 0;
}
// 哈希表
#include <iostream>
#include <algorithm>
#include <unordered_map>
using namespace std;
const int N = 2e5 + 10;
int n, m;
unordered_map<int, int> a;
struct MV {
int idx, cnt1, cnt2;
bool operator <(const MV &m) const {
if (cnt1 == m.cnt1) return cnt2 < m.cnt2;
return cnt1 < m.cnt1;
}
} mv[N];
int main() {
cin >> n;
for (int i = 1; i <= n; i++) {
int x;
scanf("%d", &x);
a[x]++; //完成了离散化的工作
}
cin >> m;
for (int i = 1; i <= m; i++) {
int x;
scanf("%d", &x);
mv[i].idx = i;
mv[i].cnt1 = a[x];
}
for (int i = 1; i <= m; i++) {
int x;
scanf("%d", &x);
mv[i].cnt2 = a[x];
}
sort(mv + 1, mv + m + 1);
cout << mv[m].idx;
return 0;
}
区间和
由于需要遍历数组获取前缀和,而且数组范围过大,因此需要使用离散化
只用哈希表仍然需要遍历,虽然可以再用一个数组记录有数的位置,但是这样做就有些太麻烦了
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
const int N = 3 * 1e5 + 10;
typedef pair<int, int> PII;
vector<PII> add, query;
// vector<int> alls;
int alls[N], all_size, dsize;
int a[N], s[N];
void discrete() {
sort(alls, alls + all_size);
for (int i = 0; i < all_size; i++) {
if (i == 0 || alls[i] != alls[i - 1])
alls[dsize++] = alls[i];
}
}
int find(int x) {
return lower_bound(alls, alls + dsize, x) - alls + 1;
}
// int find(int x) {
// int l = 0, r = alls.size() - 1;
// while (l < r) {
// int mid = l + (r - l) / 2;
// if (alls[mid] >= x) r = mid;
// else l = mid + 1;
// }
// return r + 1;
// }
int main() {
int n, m;
scanf("%d%d", &n, &m);
for (int i = 0; i < n; i++) {
int x, c;
scanf("%d%d", &x, &c);
add.push_back({x, c});
// alls.push_back(x);
alls[all_size++] = x;
}
for (int i = 0; i < m; i++) {
int l, r;
scanf("%d%d", &l, &r);
query.push_back({l, r});
alls[all_size++] = l;
alls[all_size++] = r;
// alls.push_back(l);
// alls.push_back(r);
}
discrete();
// sort(alls.begin(), alls.end());
// alls.erase(unique(alls.begin(), alls.end()), alls.end());
for (auto item: add) {
int x = find(item.first);
a[x] += item.second;
}
for (int i = 1; i <= dsize; i++) s[i] = s[i - 1] + a[i];
for (auto item: query) {
int l = find(item.first), r = find(item.second);
printf("%d\n", s[r] - s[l - 1]);
}
return 0;
}
中位数
知识点
直接看模板题
货仓选址
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 1e5 + 10;
int a[N];
int main() {
int n;
cin >> n;
for (int i = 0; i < n; i++)
scanf("%d", &a[i]);
sort(a, a + n);
int ans = 0;
for (int i = 0; i < n; i++) ans += abs(a[i] - a[n / 2]);
cout << ans;
return 0;
}
可以将其一般化为这样一个问题:给定x[1], …, x[n],求的最小值,其中x∈R
- n为奇数时,取中位数
n为偶数时,取x[n/2]~x[n/2+1]中的任何一个数均可
习题
第k大数
知识点
基于快排的快速选择算法,做法就是在基准值的位置放好之后,如果大于基准值的数的数量cnt>=k,就在左半段寻找第k大数,否则在右半段寻找第k-cnt大数。每次选择了左右之一继续,因此时间复杂度为
模板
```cpp // 快排模板 void quick_sort(int q[], int l, int r) { if (l >= r) return;
// 随机选取基准 int idx = l + rand() % (r - l + 1); int x = q[idx]; int i = l - 1, j = r + 1;
while (i < j) { //x左边的数
x while (q[++i] < x);
while (q[--j] > x);
if (i < j) swap(q[i], q[j]);
}
quick_sort(q, l, j); quick_sort(q, j + 1, r); }
// 快速选择 void quick_select(int q[], int l, int r, int k) { if (l >= r) return q[l];
int idx = l + rnad() % (r - l + 1);
int x = q[idx];
int i = l - 1, j = r + 1;
while (i < j) {
while (q[++i] < x);
while (q[--j] > x);
if (i < j) swap(q[i], q[j]);
}
int tmp = j - l + 1;
if (tmp < k) return quick_select(q, j + 1, r, k - tmp);
else return quick_select(q, l, j, k);
}
<a name="WIflP"></a>
# 逆序对
<a name="kBGpS"></a>
## 知识点
定义:对于一个序列a,若i<j并且a[i]>a[j],则称a[i]与a[j]构成逆序对<br />使用归并排序可以在O(nlogn)时间求出逆序对个数<br />左右两半各自内部的逆序对数目作为子问题,只考虑merge即可
<a name="zDOr5"></a>
## 模板
```cpp
// 归并排序
void merge_sort(int a[], int l, int r) {
if (l >= r) return;
int mid = l + r >> 1;
merge_sort(a, l, mid);
merge_sort(a, mid + 1, r);
int i = l, j = mid + 1, k = 0;
while (i <= mid && j <= r) {
if (a[i] <= a[j]) tmp[k++] = a[i++];
else tmp[k++] = a[j++];
}
while (i <= mid) tmp[k++] = a[i++];
while (j <= r) tmp[k++] = a[j++];
for (int i = l, j = 0; i <= r; i++, j++) a[i] = tmp[j];
}
// 求逆序对数目
typedef long long LL;
LL merge_sort(int a[], int l, int r) {
if (l >= r) return;
int mid = l + r >> 1;
LL cnt = merge_sort(a, l, mid);
cnt += merge_sort(a, mid + 1, r);
int i = l, j = mid + 1, k = 0;
while (i <= mid && j <= r) {
if (a[i] <= a[j]) {
tmp[k++] = a[i++];
cnt += mid - i + 1;
}
else tmp[k++] = a[j++];
}
while (i <= mid) tmp[k++] = a[i++];
while (j <= r) tmp[k++] = a[j++];
for (int i = l, j = 0; i <= r; i++, j++) a[i] = tmp[j];
return cnt;
}
STL
大多数情况下,排序直接使用C++自带的sort,通过自定义排序函数cmp来解决各种问题
- 对字符串排序,默认的排序方法和strcmp一致,逐char比较
- strcmp:相等时返回0,ab返回正数
- 需要比较字符串长度的话使用strlen
习题
字符串排序2
非英文字母的其它字符保持原来的位置
可以将英文字母单独拿出来排序
最后如果是英文字母,按照单独拿出来的排序结果依次补上,不是英文字母直接用 ```cppinclude
include
include
include
include
using namespace std;
const int N = 1005;
struct alpha { char c; int id; }alphas[N];
char s[N];
bool cmp(alpha a, alpha b) { char c1 = a.c, c2 = b.c; if (c1 >= ‘A’ && c1 <= ‘Z’) c1 = c1 - ‘A’ + ‘a’; if (c2 >= ‘A’ && c2 <= ‘Z’) c2 = c2 - ‘A’ + ‘a’;
if (c1 == c2) return a.id < b.id;
return c1 < c2;
}
int main() {
#ifdef SUBMIT
freopen("in.txt", "r", stdin);
freopen("out.txt", "w", stdout);
long _begin_time = clock();
#endif
while (gets(s)) {
int len = strlen(s);
int cnt = 0;
for (int i = 0; i < len; i++) {
if (isalpha(s[i])) {
alphas[cnt].c = s[i];
alphas[cnt].id = cnt;
cnt++;
}
}
sort(alphas, alphas + cnt, cmp);
cnt = 0;
for (int i = 0; i < len; i++) {
if (isalpha(s[i])) {
printf("%c", alphas[cnt++]);
}
else {
printf("%c", s[i]);
}
}
puts("");
}
#ifdef SUBMIT
long _end_time = clock();
printf("\n\ntime = %ld ms", _end_time - _begin_time);
#endif
return 0;
TOPK
- 全局排序,O(n*lg(n))
- 局部排序,只排序TopK个数,O(n*k)
- 选择排序选出最小的K个数
- 堆,TopK个数也不排序了,O(n*lg(k))
- 选出的K个数不需要顺序,可以维护一个大小为K的堆
- 建堆复杂度O(k),调整复杂度最小O(n),最大O(nlogk),总体最小O(n),最大O(nlogk)
快速选择:选出第K大的数,那么它左侧加上它就是TOPK
使用stable_sort,用法和sort完全一致,是稳定的
- stable_sort 基于归并排序,属于非原地排序,时间复杂度上与sort相差无几,当初做实验非递归的版本甚至要快
- 为每个元素增加一个属性下标,进行区分,利用cmp比较规则