贪心+树状数组,CF1579E2 - Array Optimization by Deque

2024-06-06 01:28

本文主要是介绍贪心+树状数组,CF1579E2 - Array Optimization by Deque,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、题目

1、题目描述

2、输入输出

2.1输入

2.2输出

3、原题链接

1579E2 - Array Optimization by Deque

二、解题报告

1、思路分析

很好想也很好证明的贪心

因为添加的顺序是确定的,我们每次只需决策放左边还是放右边

x放左边,那么贡献就是右边比x小的个数

x放右边,那么贡献就是左边比x大的个数

两个位置,哪个贡献少放哪边

证明:反证法

假设存在最优解,存在a[i] 没有按照贪心策略放置,不妨假设应该放左边P1但是放了右边P2

那么我们将操作修改把a[i]放左边P1,其它操作不变

那么a[i]只影响了a[P1 + 1, P2 - 1]之间的数字的贡献

由于贪心策略是放P1,所以区间内比a[i]小的个数小于等于比a[i]大的个数,所以贡献不会变大

我们不断调整最优解中不是贪心策略的操作能够得到另一个最优甚至更优解。

证毕

由于值域很大需要离散化

2、复杂度

时间复杂度:O(NlogN) 空间复杂度:O(N)

3、代码详解

#include <bits/stdc++.h>
using PII = std::pair<int, int>;
using i64 = long long;const int inf = 1e9;template<typename T = int>
class FenWick {
private:T n;std::vector<T> tr;
public:FenWick(T _n) : n(_n), tr(_n + 1) {}void add(T x, T k) {for (; x <= n; x += x & -x) tr[x] += k;}T query(T x) const {T res = 0;for (; x; x &= x - 1) res += tr[x];return res;}
};void solve() {int n;std::cin >> n;std::vector<int> nums(n);for (int i = 0; i < n; i ++ ) std::cin >> nums[i];std::vector<int> id(nums);std::sort(id.begin(), id.end());id.erase(std::unique(id.begin(), id.end()), id.end());int m = id.size();FenWick<int> st(m + 1);i64 res = 0;for (int x : nums) {x = std::lower_bound(id.begin(), id.end(), x) - id.begin() + 1;int L = st.query(x - 1), R = st.query(m) - st.query(x);st.add(x, 1);res += std::min(L, R);}std::cout << res << '\n';
}int main () {std::ios::sync_with_stdio(false);   std::cin.tie(0);  std::cout.tie(0);int _ = 1;std::cin >> _;while (_ --)solve();return 0;
}

这篇关于贪心+树状数组,CF1579E2 - Array Optimization by Deque的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1034704

相关文章

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

usaco 1.3 Barn Repair(贪心)

思路:用上M块木板时有 M-1 个间隙。目标是让总间隙最大。将相邻两个有牛的牛棚之间间隔的牛棚数排序,选取最大的M-1个作为间隙,其余地方用木板盖住。 做法: 1.若,板(M) 的数目大于或等于 牛棚中有牛的数目(C),则 目测 给每个牛牛发一个板就为最小的需求~ 2.否则,先对 牛牛们的门牌号排序,然后 用一个数组 blank[ ] 记录两门牌号之间的距离,然后 用数组 an

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

poj 3190 优先队列+贪心

题意: 有n头牛,分别给他们挤奶的时间。 然后每头牛挤奶的时候都要在一个stall里面,并且每个stall每次只能占用一头牛。 问最少需要多少个stall,并输出每头牛所在的stall。 e.g 样例: INPUT: 51 102 43 65 84 7 OUTPUT: 412324 HINT: Explanation of the s

poj 2976 分数规划二分贪心(部分对总体的贡献度) poj 3111

poj 2976: 题意: 在n场考试中,每场考试共有b题,答对的题目有a题。 允许去掉k场考试,求能达到的最高正确率是多少。 解析: 假设已知准确率为x,则每场考试对于准确率的贡献值为: a - b * x,将贡献值大的排序排在前面舍弃掉后k个。 然后二分x就行了。 代码: #include <iostream>#include <cstdio>#incl

C++——stack、queue的实现及deque的介绍

目录 1.stack与queue的实现 1.1stack的实现  1.2 queue的实现 2.重温vector、list、stack、queue的介绍 2.1 STL标准库中stack和queue的底层结构  3.deque的简单介绍 3.1为什么选择deque作为stack和queue的底层默认容器  3.2 STL中对stack与queue的模拟实现 ①stack模拟实现

POJ2010 贪心优先队列

c头牛,需要选n头(奇数);学校总共有f的资金, 每头牛分数score和学费cost,问合法招生方案中,中间分数(即排名第(n+1)/2)最高的是多少。 n头牛按照先score后cost从小到大排序; 枚举中间score的牛,  预处理左边与右边的最小花费和。 预处理直接优先队列贪心 public class Main {public static voi

ural 1820. Ural Steaks 贪心

1820. Ural Steaks Time limit: 0.5 second Memory limit: 64 MB After the personal contest, happy but hungry programmers dropped into the restaurant “Ural Steaks” and ordered  n specialty steaks

ural 1014. Product of Digits贪心

1014. Product of Digits Time limit: 1.0 second Memory limit: 64 MB Your task is to find the minimal positive integer number  Q so that the product of digits of  Q is exactly equal to  N. Inpu

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,