題目鏈接:[點擊打開鏈接](http://acm.hdu.edu.cn/showproblem.php?pid=3450)
題目大意: 統計滿足相鄰兩個數之差不超過d的子序列個數。
我們不難想到一個O(n^2)的DP算法 : 對于每一個i, d[i]表示 以i結尾的子序列個數。 ?那么它將轉移到所有滿足(j >= 1 && j < i && abs(a[j]-a[i])<=d)的d[j] 。
但是由于n太大了, 這樣顯然會超時, 那么我們來想想如何優化這個算法: ?可以發現, ?對于每個d[i], 其累加的部分是一個(a[i] - d, a[i] + d)的范圍內的且在i之前出現過的所有d[j]。 這恰恰符合樹狀數組的特點: 求連續和、單點更新 。
所以我們不難想到每次更新完d[i] 之后, 在a[i]這個位置上增加d[i]+1。 ?但是該題沒有給a[i]的數據范圍, 得到WA之后證明, 數據應該很大, 數組開不下。 ? 那么我們只需要離散化一下, 將數據一一映射到1~n的范圍內就好了。然后用二分查找找到映射后的代碼,用樹狀數組求解。
離散化的一個比較簡單易行的方法就是用另一個數組b復制a,然后對b進行排序去重,那么此時b的下標就是對數組a映射后的值,用二分查找可以很容易的找到。
復雜度O(n*logn)。
細節參見代碼:
~~~
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<string>
#include<vector>
#include<stack>
#include<bitset>
#include<cstdlib>
#include<cmath>
#include<set>
#include<list>
#include<deque>
#include<map>
#include<queue>
#define Max(a,b) ((a)>(b)?(a):(b))
#define Min(a,b) ((a)<(b)?(a):(b))
using namespace std;
typedef long long ll;
const double PI = acos(-1.0);
const double eps = 1e-6;
const int mod = 9901;
const int INF = 1000000000;
const int maxn = 100000 + 10;
ll T,n,m,e,d[maxn],bit[maxn],kase = 0,a[maxn],b[maxn];
ll sum(ll x) {
ll ans = 0;
while(x > 0) {
ans = (ans + bit[x])%mod;
x -= x & -x;
}
return ans;
}
void add(ll x, ll dd) {
dd %= mod;
while(x <= n) {
bit[x] = (bit[x] + dd)%mod;
x += x & -x;
}
}
int main() {
while(~scanf("%I64d%I64d",&n,&e)) {
memset(bit, 0, (n+1)*sizeof(ll));
ll maxv = 0;
for(int i=1;i<=n;i++) {
scanf("%I64d",&a[i]);
b[i] = a[i];
maxv = max(maxv, a[i]);
}
sort(b+1, b+n+1);
int len = unique(b+1,b+n+1) - b - 1;
for(int i=1;i<=n;i++) {
ll l = lower_bound(b+1,b+len+1,a[i]-e) - b - 1;
ll r = lower_bound(b+1,b+len+1,a[i]+e) - b;
ll v = lower_bound(b+1,b+len+1,a[i]) - b;
if(r > len || b[r] > a[i]+e) --r;
d[i] = (sum(r) - sum(l) + mod) % mod;
add(v, d[i]+1);
}
ll ans = 0;
for(int i=1;i<=n;i++) {
ans = (ans + d[i])%mod;
}
printf("%I64d\n",ans);
}
return 0;
}
~~~
- 前言
- 1608 - Non-boring sequences(折半遞歸。。暫且這么叫吧)
- 11491 - Erasing and Winning(貪心)
- 1619 - Feel Good(高效算法-利用數據結構優化-優先隊列)
- hdu-4127 Flood-it!(IDA*算法)
- UESTC 1132 醬神賞花 (用數據結構優化DP)
- HDU 2874 Connections between cities(LCA離線算法)
- Codeforces Round #317 A. Lengthening Sticks(組合+容斥)
- HDU 3085 Nightmare Ⅱ(雙向BFS)
- HDU 5592 ZYB&#39;s Premutation(二分+樹狀數組)
- Codeforces Round #320 (Div. 1) C. Weakness and Poorness(三分)
- HDU 5212 Code(容斥)
- HDU 5596 GTW likes gt(multiset)
- FZU 2159 WuYou(貪心)
- HDU 3450 Counting Sequences(DP + 樹狀數組)
- HDU 5493 Queue(二分+樹狀數組)
- HDU 1166 敵兵布陣(線段樹版)
- HDU 1394 Minimum Inversion Number(樹狀數組||線段樹)
- HDU 2795 Billboard(線段樹)
- POJ 2828 Buy Tickets(樹狀數組)
- 《完全版線段樹》- NotOnlySuccess
- POJ 2886 Who Gets the Most Candies?(樹狀數組+二分)
- HDU 1698 Just a Hook(線段樹區間修改)
- POJ 3468 A Simple Problem with Integers(線段樹|區間加減&amp;&amp;區間求和)
- POJ 2528 Mayor&#39;s posters(線段樹區間修改+離散化)
- HDU 5606 tree(并查集)
- POJ 3734 Blocks(矩陣優化+DP)
- POJ 3233 Matrix Power Series(矩陣優化)
- HDU 5607 graph(矩陣優化+概率DP)
- POJ 2777 Count Color(線段樹區間修改+位運算)
- POJ 1436 Horizontally Visible Segments(線段樹區間修改)
- UVA 1513 - Movie collection(樹狀數組)
- UVA 1232 - SKYLINE(線段樹區間更新)
- 11525 - Permutation(二分+樹狀數組)
- 11402 - Ahoy, Pirates!(線段樹區間更新(標記重疊的處理))
- Educational Codeforces Round 6 E. New Year Tree(DFS序+線段樹)