-
[置顶]小程序引擎(开源小程序引擎)
本文目录一览:1、做一个小程序需要具备什么技术?2、企业是否需要制作小程序?怎么做企业小程序?3、taro 怎么集成 android sdk?4、百度小程序有什么特点?5、qq小程序基础引擎加载失败怎...
-
HDU 2859 Phalanx——DP
HDU 2859 Phalanx——DP这题就是一道规律题, 可以发现对于对称矩阵对角线上的元素(i,j),他的上面所有元素(1~i, j)和他的右面所有元素(i, j~n)相匹配,设匹配数量为cnt...
-
UVALive 7752 Free Figurines——双向链表
UVALive 7752 Free Figurines——双向链表题目要求用最少的步数达到目标,所以要从最小的娃娃开始处理,即从1开始,最后处理到n;然后就是用双向链表模拟,模拟父子关系的连接与断开,...
-
HDU 5791 Two——DP
HDU 5791 Two——DP求两个串的公共子串的个数,LCS变形#include #include #include #include using namespace std;typedef lo...
-
HDU 5538 House Building——思路题
HDU 5538 House Building——思路题#include #include #include #include using namespace std;const int MAXN =...
-
-
HDU 5532 Almost Sorted Array——LIS
HDU 5532 Almost Sorted Array——LIS非严格递增递减要求使用upper_bound()#include #include #include #include using n...
-
POJ 1733 Parity game——并查集 + 离散化
POJ 1733 Parity game——并查集 + 离散化#include #include using namespace std;const int maxn = 1e4 + 10;int T...
-
UVa 11572 Unique Snowflakes——思路题
UVa 11572 Unique Snowflakes——思路题这个题划分一下子问题就很好理解了设ans【i】是以第i个元素为首的最长集合的长度,那么求解过程便是对于每一个i,尽量将其无限延长,直到出...
-
POJ 1611 The Suspects——并查集
POJ 1611 The Suspects——并查集建立集合看看那些人和0号人在一个集合中就可以#include #include #include #include using namespace...
-
LightOJ - 1074 Extended Traffic——spfa判负环
LightOJ - 1074 Extended Traffic——spfa判负环这题判负环后需要用dfs把整个负环标记一下,WA到爆炸的同学尝试把I64改成ll或者直接用int#include #in...

