study from:

https://www.cnblogs.com/flashhu/p/9480669.html

1.前缀和

https://www.luogu.org/problemnew/show/P2513

 #include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <time.h>
#include <string>
#include <set>
#include <map>
#include <list>
#include <stack>
#include <queue>
#include <vector>
#include <bitset>
#include <ext/rope>
#include <algorithm>
#include <iostream>
using namespace std;
#define ll long long
#define minv 1e-6
#define inf 1e9
#define pi 3.1415926536
#define E 2.7182818284
const int mod=1e4;//
const int maxn=1e3+; int f[maxn][maxn],tot[maxn]; int main()
{
int n,k,i,j,l;
scanf("%d%d",&n,&k);
f[][]=;
for (i=;i<=n;i++)
{
tot[]=;
l=min(i*(i-)/,k);
for (j=;j<=l;j++)
tot[j]=(tot[j-]+f[i-][j])%mod;
for (j=;j<=l;j++)
f[i][j]=(tot[j]-tot[max(j-i,-)]+mod)%mod;
}
printf("%d",f[n][k]);
return ;
}

https://www.luogu.org/problemnew/show/P2511

 #include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <time.h>
#include <string>
#include <set>
#include <map>
#include <list>
#include <stack>
#include <queue>
#include <vector>
#include <bitset>
#include <ext/rope>
#include <algorithm>
#include <iostream>
using namespace std;
#define ll long long
#define minv 1e-6
#define inf 1e9
#define pi 3.1415926536
#define E 2.7182818284
const int mod=;//
const int maxn=5e4+; int a[maxn],t[maxn],tot[maxn],f[maxn][]; int main()
{
int n,c,x,y,i,j,k,l,r,m,result=;
scanf("%d%d",&n,&c);
c++;
for (i=;i<=n;i++)
scanf("%d",&a[i]);
l=; r=5e7;
while (l<=r)
{
m=(l+r)>>;
j=;
k=;
for (i=;i<=n;i++)
if (a[i]>m)
break;
else if (k+a[i]>m)
{
j++;
k=a[i];
}
else
k+=a[i];
if (i==n+ && j<=c)
r=m-;
else
l=m+;
}
printf("%d ",l); t[]=;
for (i=;i<=n;i++)
t[i]=t[i-]+a[i]; f[][]=;
x=,y=;
for (j=;j<=c;j++)
{
tot[-]=;
for (i=;i<=n;i++)
tot[i]=(tot[i-]+f[i][y])%mod;
//f[i][j] f[][j-1]
k=;
f[][x]=;
for (i=;i<=n;i++)
{
//[k,i)
while (t[i]-t[k]>l)
k++;
f[i][x]=(tot[i-]-tot[k-])%mod;
}
result=(result+f[n][x])%mod;
x=x^;
y=y^;
}
printf("%d",(result+mod)%mod);
return ;
}
/*
5 1
3 3 4 5 3 5 3
1 1 1 1 1
*/

2.单调队列优化

https://www.luogu.org/problemnew/show/P1886

 #include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <time.h>
#include <string>
#include <set>
#include <map>
#include <list>
#include <stack>
#include <queue>
#include <vector>
#include <bitset>
#include <ext/rope>
#include <algorithm>
#include <iostream>
using namespace std;
#define ll long long
#define minv 1e-6
#define inf 1e9
#define pi 3.1415926536
#define E 2.7182818284
const int mod=;//
const int maxn=1e6+; /**
n个数字a[1]-a[n],每个大小为m的区间
最小值和最大值
**/ int a[maxn],x[maxn]; ///x:记录下标 int main()
{
int n,m,i,head,tail;
scanf("%d%d",&n,&m);
for (i=;i<=n;i++)
scanf("%d",&a[i]);
///min
head=,tail=;
///以i作为末尾的区间
for (i=;i<=n;i++)
{ while (head1<=tail1 && x[head1]<=i-m)
head1++;
while (head1<=tail1 && a[x[tail1]]>=a[i])
tail1--; ///每个点入队列一次,最多出队列一次
while (head<=tail && x[head]<=i-m) ///在区间外的数字被剔除,(i-m,i]
head++;
while (head<=tail && a[x[tail]]>=a[i]) ///求区间最小/大值,对于在前面的数,只有数值小/大于后面才有用,否则从右往左被剔除(符号相反,大于等于/小于等于),类似单调栈
tail--;
tail++;
x[tail]=i;
if (i>=m)
printf("%d%c",a[x[head]],i==n?'\n':' ');
} ///max
head=,tail=;
for (i=;i<=n;i++)
{
while (head<=tail && x[head]<=i-m)
head++;
while (head<=tail && a[x[tail]]<=a[i])
tail--;
tail++;
x[tail]=i;
if (i>=m)
printf("%d%c",a[x[head]],i==n?'\n':' ');
}
return ;
}

各种蕴含算法思想的DP - 1的更多相关文章

  1. 各种蕴含算法思想的DP - 2

    study from: https://www.cnblogs.com/flashhu/p/9480669.html 3.斜率dp study from:http://www.cnblogs.com/ ...

  2. 各种蕴含算法思想的DP - 3

    内容中包含 base64string 图片造成字符过多,拒绝显示

  3. AC自动机——多模式串匹配的算法思想

    标准KMP算法用于单一模式串的匹配,即在母串中寻求一个模式串的匹配,但是现在又存在这样的一个问题,如果同时给出多个模式串,要求找到这一系列模式串在母串存在的匹配个数,我们应该如何处理呢? 基于KMP算 ...

  4. 机器学习&数据挖掘笔记(常见面试之机器学习算法思想简单梳理)

    机器学习&数据挖掘笔记_16(常见面试之机器学习算法思想简单梳理) 作者:tornadomeet 出处:http://www.cnblogs.com/tornadomeet 前言: 找工作时( ...

  5. [转]机器学习&数据挖掘笔记_16(常见面试之机器学习算法思想简单梳理)

    机器学习&数据挖掘笔记_16(常见面试之机器学习算法思想简单梳理) 转自http://www.cnblogs.com/tornadomeet/p/3395593.html 前言: 找工作时(I ...

  6. JVM三种垃圾收集算法思想及发展过程

    JVM垃圾收集算法的具体实现有很多种,本文只是介绍实现这些垃圾收集算法的三种思想和发展过程.所有的垃圾收集算法的具体实现都是遵循这三种算法思想而实现的. 1.标记-清除算法 标记-清除(Mark-Sw ...

  7. 基本算法思想Java实现的详细代码

    基本算法思想Java实现的详细代码 算法是一个程序的灵魂,一个好的算法往往可以化繁为简,高效的求解问题.在程序设计中算法是独立于语言的,无论使用哪一种语言都可以使用这些算法,本文笔者将以Java语言为 ...

  8. 基本算法思想之递推算法思想(C++语言描述)

    递推算法是非常常用的算法思想,在数学计算等场合有着广泛的应用.递推算法适合有明显公式规律的场合. 递推算法基本思想 递推算法是一种理性思维莫斯的代表,根据已有的数据和关系,逐步推到而得到结果.递推算法 ...

  9. [算法模版]子序列DP

    [算法模版]子序列DP 如何求本质不同子序列个数? 朴素DP 复杂度为\(O(nq)\).其中\(q\)为字符集大小. \(dp[i]\)代表以第\(i\)个数结尾的本质不同子序列个数.注意,这里对于 ...

随机推荐

  1. 20155301 《网络攻防》 Exp5 MSF基础应用

    20155301 <网络攻防> Exp5 MSF基础应用 基础问题 1.用自己的话解释什么是exploit,payload,encode 答:exploit就是利用一些工具的,用来收集目标 ...

  2. POJ1159

    这竟然是IOI虽然是2000年的,但其实也改变不了它水题的本质 我写了两种方法,这里都讲一下吧 考虑记忆化搜索,用f[i][j]表示当区间的左端为i,右端为j时最少要添加多少字符,所以ans就为f[1 ...

  3. mfc Picture Control 控件属性

    知识点: Picture Control 控件属性 CStatic类 图片控件 图片控件使用 一.图片控件属性 Picture Control 属性: Type:Frame //框架 Type:Etc ...

  4. HTML基础语法

    目录 HTML基础语法 1.全局架构标签 2.标题 3.段落 4.文本 5.属性 6.链接 7.图片 8.列表 9.表格 10.区块 11.布局 12.表单 13.框架 14.头部 HTML基础语法 ...

  5. 【亲测有效】Nodepad++/Sublime Text3中Python脚本运行出现语法错误:IndentationError: unindent does not match any outer indentation level解决策略

    我在开发游戏的时候,发现一个python脚本,本来都运行好好的,然后写了几行代码,而且也都确保每行都对齐了,但是运行的时候,却出现语法错误: IndentationError: unindent do ...

  6. unity ray和line射线检测

    RaycastHit 光线投射碰撞 Struct Structure used to get information back from a raycast. 用来获取从raycast函数中得到的信息 ...

  7. jumpserver部署

    1.部署环境.安装依赖包 # yum install git python-pip mysql-devel gcc automake autoconf python-devel vim sshpass ...

  8. [转]An overview of Openvswitch implementation

    This is NOT a tutorial on how to use openvswitch, this is for developers who want to know the implem ...

  9. B1014. 福尔摩斯的约会

    14/20 #include<bits/stdc++.h> using namespace std; map<char,string> day; int main(){ day ...

  10. python3【基础】-赋值与深浅拷贝

    一.Python的变量及其存储 在高级语言中,变量是对内存及其地址的抽象.对于python而言,python的一切变量都是对象,变量的存储,采用了引用语义的方式,存储的只是一个变量的值所在的内存地址, ...