热门标签
更多>
搜索结果
查询Tags标签: totl,共有 2条记录-
基础算法----离散化 unique STL
离散化 1、排序 2、对排序后的数据去重(可以使用unique),同时用1-m的数字和新数组储存; void discret() {sort(a + 1, a + 1 + n);int tot = 0;For(i, i, n){if(i == 1 || a[i] != a[i-1])uni[++tot] = a[i];} }3、查询 int find(int x) {return lower_bound(uni + 1, u…
2021/11/4 22:14:22 人评论 次浏览 -
基础算法----离散化 unique STL
离散化 1、排序 2、对排序后的数据去重(可以使用unique),同时用1-m的数字和新数组储存; void discret() {sort(a + 1, a + 1 + n);int tot = 0;For(i, i, n){if(i == 1 || a[i] != a[i-1])uni[++tot] = a[i];} }3、查询 int find(int x) {return lower_bound(uni + 1, u…
2021/11/4 22:14:22 人评论 次浏览