博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ2586 Y2K Accounting Bug 解题报告
阅读量:7100 次
发布时间:2019-06-28

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

Description

Accounting for Computer Machinists (ACM) has sufferred from the Y2K bug and lost some vital data for preparing annual report for MS Inc.

All what they remember is that MS Inc. posted a surplus or a deficit each month of 1999 and each month when MS Inc. posted surplus, the amount of surplus was s and each month when MS Inc. posted deficit, the deficit was d. They do not remember which or how many months posted surplus or deficit. MS Inc., unlike other companies, posts their earnings for each consecutive 5 months during a year. ACM knows that each of these 8 postings reported a deficit but they do not know how much. The chief accountant is almost sure that MS Inc. was about to post surplus for the entire year of 1999. Almost but not quite.
Write a program, which decides whether MS Inc. suffered a deficit during 1999, or if a surplus for 1999 was possible, what is the maximum amount of surplus that they can post.

Input

Input is a sequence of lines, each containing two positive integers s and d.

Output

For each line of input, output one line containing either a single integer giving the amount of surplus for the entire year, or output Deficit if it is impossible.

Sample Input

59 237 375 743 200000 849694 2500000 8000000

Sample Output

116 28 300612 Deficit
 

分析:

已知一年中,所有的连续的5个月是亏损的(如1-5月,2-6月。。。8-12月共8个),每个月要么收益s,要么亏损d,
求一年中最大收益。这数据量什么都不想了直接暴力搜索加个树状数组优化下算是用了点心了
#include 
#include
using namespace std;int f[13],ans,s,d;void update(int x,int k){ for(;x<=12;x+=(-x)&x) f[x]+=k;}int sum(int x){ int s=0; for(;x>0;x-=(-x)&x) s+=f[x]; return s;}void make(int k){ if(k==13) { ans=max(sum(12),ans); return; } update(k,s+d); int i; for(i=5;i<=12;i++){ if(sum(i)-sum(i-5)>0) break; } if(i<13) { update(k,-s-d); make(k+1); } else{ make(k+1); update(k,-s-d); make(k+1); }}int main(){ while(cin>>s>>d) { ans=-1e8; memset(f,0,sizeof f); for(int i=1;i<=12;i++) update(i,-d); make(1); if(ans<0) cout<<"Deficit"<
keam所有 转载请注明出处

转载于:https://www.cnblogs.com/keam37/p/3749129.html

你可能感兴趣的文章
Makefile 10——打造更专业的编译环境-huge项目
查看>>
Create and Call HttpHandler in SharePoint
查看>>
pymysql.err.InternalError: (1054, "Unknown column 'None' in 'field list'")
查看>>
树莓派与window 10组成的物联网核心:让人失望
查看>>
Servlet的异常处理
查看>>
支付宝 app支付 沙盘使用
查看>>
Redis持久化配置-AOF
查看>>
计算机网络的应用层简单介绍:
查看>>
需求管理之客户需求何时休?
查看>>
Java进化? Kotlin初探与集成Android项目
查看>>
URL中的#
查看>>
CentOS自带mysql配置(密码更改、端口开放访问、添加进系统启动项)
查看>>
MYSQL中动态行数据转列数据
查看>>
anchor_target_layer中的bounding regression
查看>>
[转]怎么解决输入流和输出流编码问题
查看>>
Linux下Jenkins服务器搭建
查看>>
pavenet资源
查看>>
致研究者:2018 AI 研究趋势
查看>>
006-unity3d GUI初识、贴图、自定义鼠标指针
查看>>
Set replication in Hadoop
查看>>