
最长上升子序列LIS
zzuli-dk
这个作者很懒,什么都没留下…
展开
-
POJ 1631 LIS 模板题
Description 'Oh no, they've done it again', cries the chief designer at the Waferland chip factory. Once more the routing designers have screwed up completely, making the signals on the chip connec原创 2016-10-12 20:37:30 · 377 阅读 · 0 评论 -
最长上升序列模板 LIS
#include #include #include #include #include using namespace std; const int N = 100010; typedef long long LL; const int inf = 0x3f3f3f3f; int a[N], b[N]; int main() { in原创 2016-10-08 15:25:03 · 240 阅读 · 0 评论