摘要:
题目链接:Link Problem Solution 看一眼数据范围,再看一眼“高性能”,不难发现直接大力dp即可。 如果倒着做会比较麻烦,直接从 $ f(0,0,0,0,0)=0 $ 开始,使用刷表法。 Code #include<cstdio> #include<cstring> #includ 阅读全文
摘要:
题目链接:Link Problem Solution 这题是个双倍经验 Code #include<cstdio> #include<cstring> #include<algorithm> using namespace std; const int maxn=5005; int n,rlen=1 阅读全文