1. 程式人生 > >[POI 2014] Little Bird

[POI 2014] Little Bird

getchar -- getc code 代碼 using getchar() namespace pan

[題目鏈接]

https://www.lydsy.com/JudgeOnline/problem.php?id=3831

[算法]

單調隊列優化動態規劃

時間復雜度 : O(N)

[代碼]

#include<bits/stdc++.h>
using namespace std;
#define MAXN 1000010
const int inf = 2e9;

int n;
int a[MAXN] , f[MAXN];

template <typename T> inline void chkmax(T &x,T y) { x = max(x,y); }
template 
<typename T> inline void chkmin(T &x,T y) { x = min(x,y); } template <typename T> inline void read(T &x) { T f = 1; x = 0; char c = getchar(); for (; !isdigit(c); c = getchar()) if (c == -) f = -f; for (; isdigit(c); c = getchar()) x = (x << 3) + (x << 1
) + c - 0; x *= f; } inline int solve(int k) { deque< int > q; for (int i = 1; i <= n; i++) f[i] = inf; q.clear(); for (int i = 1; i <= n; i++) { while (!q.empty() && i - q.front() > k) q.pop_front();
if (q.empty()) f[i] = 0; else f[i] = f[q.front()] + (a[q.front()] <= a[i]); while (!q.empty() && ((f[i] < f[q.back()]) || ((f[i] == f[q.back()]) && a[i] >= a[q.back()]))) q.pop_back(); q.push_back(i); } return f[n]; } int main() { read(n); for (int i = 1; i <= n; i++) read(a[i]); int T; read(T); while (T--) { int x; read(x); printf("%d\n" , solve(x)); } return 0; }

[POI 2014] Little Bird