[hdu3486]rmq+枚举优化

题意:给n个数,求最小的段数,使得每一段的最大值之和大于给定的k。每一段的长度相等,最后若干个丢掉。

思路:从小到大枚举段数,如果能o(1)时间求出每一段的和,那么总复杂度是O(n(1+1/2+1/3+...+1/n))=O(nlogn)的。但题目时限卡得比较紧,需加一点小优化,如果连续两个段数它们每一段的个数一样,那么这次只比上次需要多计算一个区间,用上一次的加上这个区间最大值得到当前分段的总和,这样能减少不少运算量。详见代码:

  1 #pragma comment(linker, "/STACK:10240000,10240000")
  2
  3 #include <iostream>
  4 #include <cstdio>
  5 #include <algorithm>
  6 #include <cstdlib>
  7 #include <cstring>
  8 #include <map>
  9 #include <queue>
 10 #include <deque>
 11 #include <cmath>
 12 #include <vector>
 13 #include <ctime>
 14 #include <cctype>
 15 #include <set>
 16 #include <bitset>
 17 #include <functional>
 18 #include <numeric>
 19 #include <stdexcept>
 20 #include <utility>
 21
 22 using namespace std;
 23
 24 #define mem0(a) memset(a, 0, sizeof(a))
 25 #define lson l, m, rt << 1
 26 #define rson m + 1, r, rt << 1 | 1
 27 #define define_m int m = (l + r) >> 1
 28 #define rep_up0(a, b) for (int a = 0; a < (b); a++)
 29 #define rep_up1(a, b) for (int a = 1; a <= (b); a++)
 30 #define rep_down0(a, b) for (int a = b - 1; a >= 0; a--)
 31 #define rep_down1(a, b) for (int a = b; a > 0; a--)
 32 #define all(a) (a).begin(), (a).end()
 33 #define lowbit(x) ((x) & (-(x)))
 34 #define constructInt4(name, a, b, c, d) name(int a = 0, int b = 0, int c = 0, int d = 0): a(a), b(b), c(c), d(d) {}
 35 #define constructInt3(name, a, b, c) name(int a = 0, int b = 0, int c = 0): a(a), b(b), c(c) {}
 36 #define constructInt2(name, a, b) name(int a = 0, int b = 0): a(a), b(b) {}
 37 #define pchr(a) putchar(a)
 38 #define pstr(a) printf("%s", a)
 39 #define sstr(a) scanf("%s", a);
 40 #define sint(a) ReadInt(a)
 41 #define sint2(a, b) ReadInt(a);ReadInt(b)
 42 #define sint3(a, b, c) ReadInt(a);ReadInt(b);ReadInt(c)
 43 #define pint(a) WriteInt(a)
 44 #define if_else(a, b, c) if (a) { b; } else { c; }
 45 #define if_than(a, b) if (a) { b; }
 46 #define test_print1(a) cout << "var1 = " << a << endl
 47 #define test_print2(a, b) cout << "var1 = " << a << ", var2 = " << b << endl
 48 #define test_print3(a, b, c) cout << "var1 = " << a << ", var2 = b" << ", var3 = " << c << endl
 49
 50 typedef double db;
 51 typedef long long LL;
 52 typedef pair<int, int> pii;
 53 typedef multiset<int> msi;
 54 typedef set<int> si;
 55 typedef vector<int> vi;
 56 typedef map<int, int> mii;
 57
 58 const int dx[8] = {0, 0, -1, 1};
 59 const int dy[8] = {-1, 1, 0, 0};
 60 const int maxn = 4e5 + 7;
 61 const int maxm = 1e3 + 7;
 62 const int maxv = 1e7 + 7;
 63 const int max_val = 1e6 + 7;
 64 const int MD = 22;
 65 const int INF = 1e9 + 7;
 66 const double pi = acos(-1.0);
 67 const double eps = 1e-10;
 68
 69 template<class T>T gcd(T a, T b){return b==0?a:gcd(b,a%b);}
 70 template<class T>void ReadInt(T &x){char c=getchar();while(!isdigit(c))c=getchar();x=0;while(isdigit(c)){x=x*10+c-‘0‘;c=getchar();}}
 71 template<class T>void WriteInt(T i) {int p=0;static int b[20];if(i == 0) b[p++] = 0;else while(i){b[p++]=i%10;i/=10;}for(int j=p-1;j>=0;j--)pchr(‘0‘+b[j]);}
 72 template<class T>bool max_update(T &a,const T &b){if(b>a){a = b; return true;}return false;}
 73 template<class T>bool min_update(T &a,const T &b){if(b<a){a = b; return true;}return false;}
 74 template<class T>T condition(bool f, T a, T b){return f?a:b;}
 75 template<class T>void copy_arr(T a[], T b[], int n){rep_up0(i,n)a[i]=b[i];}
 76 int make_id(int x, int y, int n) { return x * n + y; }
 77
 78 int f[maxn][20], t[maxn], a[maxn], sum[maxn];
 79 int n;
 80 void RMQ_Init() {
 81     rep_up0(i, n) f[i][0] = a[i];
 82     rep_up1(j, 18) {
 83         for (int i = 0; i + (1 << j) - 1 < n; i++) {
 84             f[i][j] = max(f[i][j - 1], f[i + (1 << (j - 1))][j - 1]);
 85         }
 86     }
 87 }
 88 int RMQ(int L, int R) {
 89     int p = t[R - L + 1];
 90     return max(f[L][p], f[R - (1 << p) + 1][p]);
 91 }
 92 LL getSum(int t, int x) {
 93     LL sum = 0;
 94     rep_up0(i, t) {
 95         sum += RMQ(i * x, i * x + x - 1);
 96     }
 97     return sum;
 98 }
 99 int main() {
100     //freopen("in.txt", "r", stdin);
101     //freopen("out.txt", "w", stdout);
102     int k;
103     rep_up1(i, 18) {
104         for (int j = (1 << (i - 1)) + 1; j <= (1 << i); j++) t[j] = i - 1;
105     }
106     while (cin >> n >> k, n >= 0 || k >= 0) {
107         rep_up0(i, n) {
108             sint(a[i]);
109             if (i) sum[i] = sum[i - 1] + a[i];
110             else sum[i] = a[i];
111         }
112         int ans = -1, last_sum = 0;
113         RMQ_Init();
114         for (int i = 1; i <= n; i++) {
115             int x = n / i;
116             LL sum = 0;
117             if (i > 1 && n / (i - 1) == x) sum = last_sum + RMQ(x * (i - 1), x * i - 1);
118             else sum = getSum(i, x);
119             if (sum > k) {
120                 ans = i;
121                 break;
122             }
123             last_sum = sum;
124         }
125         cout << ans << endl;
126     }
127     return 0;
128 }

时间: 2024-10-13 04:24:30

[hdu3486]rmq+枚举优化的相关文章

【枚举+优化】10396 - 组队

[枚举+优化]10396 - 组队 Time Limit: 1000MS Memory Limit: 65536KB NBA每年都有球员选秀环节.通常用速度和身高两项数据来衡量一个篮球运动员的基本素质.假如一支球队里速度最慢的球员速度为minV,身高最矮的球员高度为minH,那么这支球队的所有队员都应该满足: A * ( height – minH ) + B * ( speed – minV ) <= C 其中A和B,C为给定的经验值.这个式子很容易理解,如果一个球队的球员速度和身高差距太大,

简单除法(简单枚举优化)

#include<iostream> #include<algorithm> using namespace std; void panduan(int s,int k) { int n,m;bool l=1; n=s;m=k; int i,sn=0,a[20],j; for(i=0;n!=0;i++) { a[i]=n%10; n=n/10; } for(;m!=0;i++) { a[i]=m%10; m=m/10; } i--; sort(a,a+i); if(i==8) {a

2018今日头条春招的一道笔试题 —— 通过改变枚举的变量进行枚举优化

题目如下: 这道题我们最先想到的做法,应该就是2重循环枚举数对,然后把数对放在set里去重,最后输出set的大小,即输出set.size( ).代码如下: 1 #include<iostream> 2 #include<set> 3 using namespace std; 4 5 int n, k, a[100000]; 6 set<pair<int, int>> mypairs; 7 8 int main() 9 { 10 cin >> n

Objective-C 高性能的循环遍历 forin - NSEnumerator - 枚举 优化

Cocoa编程的一个通常的任务是要去循环遍历一个对象的集合  (例如,一个 NSArray, NSSet 或者是 NSDictionary). 这个看似简单的问题有广泛数量的解决方案,它们中的许多不乏有对性能方面问题的细微考虑. 对于速度的追求 首先,是一个免责声明: 相比其它问题而言,一个 Objective-C 方法原始的速度是你在编程时最后才需要考虑的问题之一 – 区别就在于这个问题够不上去同其它更加需要重点考虑的问题进行比较,比如说代码的清晰度和可读性. 但速度的次要性并不妨碍我们去理解

简单的除法(简单枚举优化)

//输入一个正整数n从小到大的顺序输出都形如abcde/fghij=n在表达a至j仅仅是数字0至9置换 //进入62出口 //79546/01283=62 //94739/01528=62 //尽管是暴力求解.可是做了一些优化. #include<iostream> #include<algorithm> using namespace std; void panduan(int s,int k) { int n,m;bool l=1; n=s;m=k; int i,sn=0,a[

POJ 题目 3693 Maximum repetition substring(后缀数组+RMQ+枚举求最小字典序的重复次数最多的子串)

Maximum repetition substring Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 8067   Accepted: 2463 Description The repetition number of a string is defined as the maximum number R such that the string can be partitioned into R same conse

2017Facebook面试题改编“一面砖墙 ”—— 通过使用哈希表进行枚举优化

题目:一面砖墙 这道题改编自网上Facebook去年的一道面试题,是hihoCoder的1494题(https://hihocoder.com/problemset/problem/1494) 这道题猛一看好像没有什么思路,枚举起来感觉挺麻烦的.为了描述方便,我们在水平方向建立一个X轴,X=0的位置设成这面墙的左边缘.X轴的长度单位与砖的长度单位保持一致: 这样对于每一个砖和砖之间交界的缝隙,都有一个X坐标.比如第一层天蓝色的缝隙,X坐标就是6,深蓝色的缝隙坐标就是10:第二层红色的缝隙坐标是8

POJ - 1054 The Troublesome Frog 模拟 枚举优化。

题意:有个R*C的格网.上面有若干个点,这些点可以连成一些直线,满足:这些点在直线上均匀排布(也就是间隔相等),直线的两段穿过网格(也就是第一个,最后一个在网格的边界附近) 求某条直线上最多的点数 题解:先排序,再任取两个水稻,算出之间的dx,dy,然后就能推出前后的水稻坐标,用如果满足路径上一直有水稻(用binarysearch),且第一个点与最后一个点在水稻外面,就是一个可行的解,维护其最大值. 注意一些判断. ac代码: #include<iostream> #include<al

51nod 1548 欧姆诺姆和糖果 (制约关系优化枚举)

1548 欧姆诺姆和糖果 题目来源: CodeForces 基准时间限制:1 秒 空间限制:131072 KB 分值: 20 难度:3级算法题  收藏  关注 一天,欧姆诺诺姆来到了朋友家里,他发现了许多糖果.有蓝色和红色两种.他知道每颗红色糖果重Wr克,每颗蓝色糖果重Wb克.吃一颗蓝色糖果会给他带来Hb的欢乐值,吃一颗红色糖果会给他带来Hr的欢乐值. 欧姆诺姆最多只能吃C克的糖果,而且每一颗糖果不能只吃一半.现在他想通过吃蓝色和红色的糖果来获得最大的欢乐值. 样例解释:每一种糖果吃两颗即可.