CF1396A.Multiples of Length
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given an array a of n integers.
You want to make all elements of a equal to zero by doing the following operation exactly three times:
- Select a segment, for each number in this segment we can add a multiple of len to it, where len is the length of this segment (added integers can be different).
It can be proven that it is always possible to make all elements of a equal to zero.
输入格式
The first line contains one integer n ( 1≤n≤100000 ): the number of elements of the array.
The second line contains n elements of an array a separated by spaces: a1,a2,…,an ( −109≤ai≤109 ).
输出格式
The output should contain six lines representing three operations.
For each operation, print two lines:
- The first line contains two integers l , r ( 1≤l≤r≤n ): the bounds of the selected segment.
- The second line contains r−l+1 integers bl,bl+1,…,br ( −1018≤bi≤1018 ): the numbers to add to al,al+1,…,ar , respectively; bi should be divisible by r−l+1 .
输入输出样例
输入#1
4 1 3 2 4
输出#1
1 1 -1 3 4 4 2 2 4 -3 -6 -6