博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
P1569 [USACO11FEB]属牛的抗议Generic Cow Prote…
阅读量:6080 次
发布时间:2019-06-20

本文共 2085 字,大约阅读时间需要 6 分钟。

题目描述

Farmer John's N (1 <= N <= 100,000) cows are lined up in a row and numbered 1..N. The cows are conducting another one of their strange protests, so each cow i is holding up a sign with an integer A_i (-10,000 <= A_i <= 10,000).

FJ knows the mob of cows will behave if they are properly grouped and thus would like to arrange the cows into one or more contiguous groups so that every cow is in exactly one group and that every group has a nonnegative sum.

Help him count the number of ways he can do this, modulo 1,000,000,009.

By way of example, if N = 4 and the cows' signs are 2, 3, -3, and 1, then the following are the only four valid ways of arranging the cows:

(2 3 -3 1) (2 3 -3) (1) (2) (3 -3 1) (2) (3 -3) (1) Note that this example demonstrates the rule for counting different orders of the arrangements.

约翰家的N头奶牛聚集在一起,排成一列,正在进行一项抗议活动。第i头奶牛的理智度 为Ai,Ai可能是负数。约翰希望奶牛在抗议时保持理性,为此,他打算将所有的奶牛隔离成 若干个小组,每个小组内的奶牛的理智度总和都要大于零。由于奶牛是按直线排列的,所以 一个小组内的奶牛位置必须是连续的。 请帮助约翰计算一下,最多分成几组。

输入输出格式

输入格式:

 

第1行包含1个数N,代表奶牛的数目。

第2至N+1行每行1个整数Ai。

 

输出格式:

 

输出文件有且仅有一行,包含1个正整数即为最多组数。

若无法满足分组条件,则输出Impossible。

 

输入输出样例

输入样例#1:
423-31
输出样例#1:
3

说明

【数据规模和约定】

30%的数据满足N≤20。

100%的数据满足N≤1000,|Ai|≤100000。

 

一开始想到用前缀和维护了,但是,还是不自信啊,,

题解里面用到了一个很巧妙的东西就是

if(dp[j]>0&&sum[i]-sum[j]>=0)

就说明他们两个可以不在一个分组里面

1 #include
2 #include
3 #include
4 #include
5 #include
6 using namespace std; 7 void read(int &n) 8 { 9 char c='+';int x=0;bool flag=0;10 while(c<'0'||c>'9')11 {c=getchar();if(c=='-')flag=1;}12 while(c>='0'&&c<='9')13 {x=x*10+(c-48);c=getchar();}14 flag==1?n=-x:n=x;15 }16 int n,m;17 int a[10001];18 int dp[10001];19 int sum[10001];20 int main()21 {22 int i,j,k;23 read(n);24 for(int i=1;i<=n;i++)25 {26 read(a[i]);27 sum[i]=sum[i-1]+a[i];28 if(sum[i]>=0)29 dp[i]=1;30 } 31 for(int i=1;i<=n;i++)32 for(int j=1;j
0&&sum[i]-sum[j]>=0)34 dp[i]=max(dp[i],dp[j]+1);35 dp[n]==0?printf("Impossible"):printf("%d",dp[n]); 36 return 0;37 }

 

转载地址:http://gfhgx.baihongyu.com/

你可能感兴趣的文章
前端切图实战(PSD设计稿转化为前端)
查看>>
华为手机使用objectAnimation异常
查看>>
leetcode 33. Search in Rotated Sorted Array 81. Search in Rotated Sorted Array II
查看>>
configSections必须是根节点下第一个节点
查看>>
ArcGIS数据融合
查看>>
ArcGIS中各种合并要素(Union、Merge、Append、Dissolve)的异同点分析 转载
查看>>
IEnumerable和IEnumerable<T>接口
查看>>
Linux fuser工具使用方法介绍
查看>>
批处理启动tomcat
查看>>
DropDownlist的DataTextField显示多列数据
查看>>
配置实现-静态网页生成
查看>>
微软学术搜索项目 10个版本的历程
查看>>
读书笔记《集体智慧编程》Chapter 7 : Modeling with Decision Tree
查看>>
在WebBrowser控件中获取鼠标在网页(不是浏览器窗口)上点击的位置,
查看>>
绝对不容错过的野生动物wildlife摄影作品
查看>>
开发过程中注意点
查看>>
UVA 10282 (13.08.18)
查看>>
获取类所在的方法的数据
查看>>
超简单MVC应用程序播放WMV视频
查看>>
C++ 多态的实现原理与内存模型
查看>>