Heap 3214 LIS题解
生活随笔
收集整理的這篇文章主要介紹了
Heap 3214 LIS题解
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
依據問題轉換成最長不降子序列問題。
10^9的輸入數據計算起來還是挺花時間的。由于這里僅僅能使用O(nlgn)時間復雜度了。
只是證明是能夠算出10^9個數據的。
由于時間限制是5s.
#include <stdio.h> #include <vector> #include <string.h> #include <algorithm> #include <iostream> #include <string> #include <limits.h> #include <stack> #include <queue> #include <set> #include <map> using namespace std;const int MAX_N = 20; vector<int> arr, a2; int N;inline int lSon(int rt) { return rt<<1|1; } inline int rSon(int rt) { return (rt<<1)+2; }void postOrder(int rt, int &v) {int l = lSon(rt), r = rSon(rt);if (l < N) postOrder(l, v);if (r < N) postOrder(r, ++v);a2.push_back(arr[rt]-v); }int biGetIndex(int low, int up, int v) {while (low <= up){int mid = low + ((up-low)>>1);if (v < a2[mid]) up = mid-1;else low = mid+1;}return low; }int LIS() {int j = 0;for (int i = 1; i < N; i++){if (a2[i] >= a2[j]) a2[++j] = a2[i];else{int id = biGetIndex(0, j, a2[i]);a2[id] = a2[i];}}return j+1; }int main() {int a;scanf("%d", &N);arr.clear(), a2.clear();while (scanf("%d", &a) != EOF){arr.push_back(a);}N = (int) arr.size();int v = 0;postOrder(0, v);int len = LIS();printf("%d\n", N-len);return 0; }轉載于:https://www.cnblogs.com/lytwajue/p/6758611.html
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的Heap 3214 LIS题解的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: SNS大负载系统解决方案研究
- 下一篇: Android 获取设备ID,手机厂商,