最長上公升子串行 LIS 的三種求法

2021-09-25 07:43:37 字數 2993 閱讀 4738

之前寫lis, 只知道兩種, 一種最基礎的n², 一種是n * log(n)的二分。

這兩個應該人盡皆知。

但是如果權值如果不為1, n又非常大, 則n²和二分都沒法用了,

但是可以使用樹狀陣列來維護(貌似也是人盡皆知), 這種做法的思想跟第一種n²很像, 大的值, 可以由前面小

的值轉移, 這個時候使用樹狀陣列維護, 將原來的修改, 求和改為最大值更新和獲取即可。

具體含義即c[x]表示最大值≤x的最長子序列長度,當前新增的數字為x,則查詢c[x - 1]即

最大值小於等於x-1的最長上公升子串行,假設求得長度是y,則最大值大於等於x的最長上公升子串行的長度都跟y + 1更新一次。

下面是三種lis的求法

直接暴力求, 從後往前掃(複雜度o(n²))

#include #include using namespace std;

#define sz(a) ((int)(a).size())

typedef long long ll;

bool cmp(int a, int b)

#define me(a, b) (memset(a, b, sizeof a))

const int inf = 0x3f3f3f3f;

const int mod = 1e9 + 7;

const double pi = acos(-1);

const int n = 2e5 + 10;

#define bo bool operator < (const node &oth)const

int a[n];

int b[n];

int main()

ans = max(ans, b[i]);

} cout << ans << endl;

} return 0;

}

使用二分優化, 每次選取最有潛力的上公升子串行,複雜度(o(n * log(n)))

#include #include using namespace std;

#define sz(a) ((int)(a).size())

typedef long long ll;

bool cmp(int a, int b)

#define me(a, b) (memset(a, b, sizeof a))

const int inf = 0x3f3f3f3f;

const int mod = 1e9 + 7;

const double pi = acos(-1);

const int n = 2e5 + 10;

#define bo bool operator < (const node &oth)const

int a[n];

int d[n];

int main()

int len = lower_bound(d + 1, d + n + 1, 0x3f3f3f3f) - d - 1;

cout << len << endl;

} return 0;

}

使用樹狀陣列維護字首最大值, 每次查詢並更新字首區間最大值。

#include #include using namespace std;

#define sz(a) ((int)(a).size())

typedef long long ll;

bool cmp(int a, int b)

#define me(a, b) (memset(a, b, sizeof a))

const int inf = 0x3f3f3f3f;

const int mod = 1e9 + 7;

const double pi = acos(-1);

const int n = 2e5 + 10;

#define bo bool operator < (const node &oth)const

ll a[n];

ll c[n];

vectorv;

inline ll lowbit(ll x)

void add(ll x, ll y, ll n)

}ll ask(ll x)

return res;

}int main()

cout << ans << endl;

} return 0;

}

掌握了第三種可以去做下這題。

#include using namespace std;

#define sz(a) ((int)(a).size())

typedef long long ll;

#define me(a, b) (memset(a, b, sizeof a))

const int inf = 0x3f3f3f3f;

const int mod = 1e9 + 7;

const double pi = acos(-1);

const int n = 2e5 + 10;

ll a[n];

ll c[n];

vectorv;

inline ll lowbit(ll x)

void add(ll x, ll y, ll n)

}ll ask(ll x)

return res;

}int main()

cout << ans << endl;

return 0;

}

最長上公升子串行 LIS

題目 兩道題幾乎一樣,只不過對於輸入輸出的要求有所不同罷了。lis有兩種方法 一 第一種方法 時間複雜度為o n 2 狀態 dp i 區間為0 i的序列的lis 轉移方程 dp i max 1,dp k 1 0 k include include include include using name...

最長上公升子串行LIS

問題 給定n個整數a1,a2,a3,a4,a5,an,從左到右的順序盡量選出多個整數,組成乙個上公升子串行,相鄰元素不相等。例如 1,6,2,3,7,5,它的最長上公升子串行為 1,2,3,5。分析 剛開始想這個問題的時候我想用遞迴來解決問題,可是後來考慮到遞迴的時間複雜度高,就覺得不能使用,並且本...

LIS 最長上公升子串行

最長遞增子串行問題 在一列數中尋找一些數,這些數滿足 任意兩個數a i 和a j 若i 設dp i 表示以i為結尾的最長遞增子串行的長度,則狀態轉移方程為 dp i max,1 j 這樣簡單的複雜度為o n 2 其實還有更好的方法。考慮兩個數a x 和a y x 按dp t k來分類,只需保留dp ...