Topcoder SRM 585 DIV2 解题报告 //缺1000
摘要:
------------LISNumberDivTwo最小的连续递增子序列的个数。。。----从前往后扫描一遍即可。。#include #include #include #include using namespace std; class LISNumberDivTwo{ private: public: int calculate(vector seq) { int ans=0; int n=seq.size(); for (int i=0;i0)f[0]=... 阅读全文
posted @ 2013-07-21 22:50 电子幼体 阅读(156) 评论(0) 推荐(0) 编辑