博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
等差数列
阅读量:4971 次
发布时间:2019-06-12

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

B. Trees in a Row
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

The Queen of England has n trees growing in a row in her garden. At that, the i-th (1 ≤ i ≤ n) tree from the left has height ai meters. Today the Queen decided to update the scenery of her garden. She wants the trees' heights to meet the condition: for all i (1 ≤ i < n),ai + 1 - ai = k, where k is the number the Queen chose.

Unfortunately, the royal gardener is not a machine and he cannot fulfill the desire of the Queen instantly! In one minute, the gardener can either decrease the height of a tree to any positive integer height or increase the height of a tree to any positive integer height. How should the royal gardener act to fulfill a whim of Her Majesty in the minimum number of minutes?

Input

The first line contains two space-separated integers: nk (1 ≤ n, k ≤ 1000). The second line contains n space-separated integersa1, a2, ..., an (1 ≤ ai ≤ 1000) — the heights of the trees in the row.

Output

In the first line print a single integer p — the minimum number of minutes the gardener needs. In the next p lines print the description of his actions.

If the gardener needs to increase the height of the j-th (1 ≤ j ≤ n) tree from the left by x (x ≥ 1) meters, then print in the corresponding line "+ j x". If the gardener needs to decrease the height of the j-th (1 ≤ j ≤ n) tree from the left by x (x ≥ 1) meters, print on the corresponding line "- j x".

If there are multiple ways to make a row of trees beautiful in the minimum number of actions, you are allowed to print any of them.

Sample test(s)
input
4 1 1 2 1 5
output
2 + 3 2 - 4 1
input
4 1 1 2 3 4
output
0 解题方法:暴力求解,将分别从1,2,3,4,5……开始的等差数列与所给数据比较
#include 
#include
using namespace std;int a[1005],b[1005];int main(){ int n,k; int i,j; while(cin>>n>>k) { memset(b,0,sizeof(b)); for(i=0;i
>a[i]; for(i=1;i<1005;i++) { for(j=0;j
f+i*k) cout<<"- "<
<<" "<
<

 

错误思想:将输入数据分别减去(i-1)*k,如果输入数据是等差数列,这时每个数应该相等(实际输入不是等差数列),从中找出相同数最多的数,其它数则为应当增减的数,此方法存在漏洞:若输入数据为5个,d=1,输入1 1 2 3 4,则处理后为0 1 2 3 4,而题中要求数据大于0,故错误!其代码如下:

#include 
#include
#include
#include
#include
using namespace std;int a[1005],b[10000000];int main(){ int n,k; int i,j,t,x,maxn,minn; while(cin>>n>>k) { minn=99999999; maxn=-99999999; memset(b,0,sizeof(b)); for(i=0;i
maxn) maxn=a[i]; if(a[i]
=minn;i--) { for(j=0;j
x) cout<<"- "<
<<" "<
<

 

 

转载于:https://www.cnblogs.com/chen9510/p/4943834.html

你可能感兴趣的文章
利用sed把一行的文本文件改成每句一行
查看>>
Android应用开发:核心技术解析与最佳实践pdf
查看>>
python——爬虫
查看>>
孤荷凌寒自学python第五十八天成功使用python来连接上远端MongoDb数据库
查看>>
求一个字符串中最长回文子串的长度(承接上一个题目)
查看>>
简单权限管理系统原理浅析
查看>>
springIOC第一个课堂案例的实现
查看>>
求输入成绩的平均分
查看>>
php PDO (转载)
查看>>
wordpress自动截取文章摘要代码
查看>>
[置顶] 一名优秀的程序设计师是如何管理知识的?
查看>>
scanf和gets
查看>>
highcharts 图表实例
查看>>
ubuntu下如何查看用户登录及系统授权相关信息
查看>>
秋季学期学习总结
查看>>
SpringBoot 优化内嵌的Tomcat
查看>>
【LaTeX】E喵的LaTeX新手入门教程(1)准备篇
查看>>
highcharts曲线图
查看>>
extjs动态改变样式
查看>>
PL/SQL Developer 查询的数据有乱码或者where 字段名=字段值 查不出来数据
查看>>