C. Ehab and a 2-operation task

题目链接
You’re given an array a of length n. You can perform the following operations on it:

choose an index i (1≤i≤n), an integer x (0≤x≤106), and replace aj with aj+x for all (1≤j≤i), which means add x to all the elements in the prefix ending at i.
choose an index i (1≤i≤n), an integer x (1≤x≤106), and replace aj with aj%x for all (1≤j≤i), which means replace every element in the prefix ending at i with the remainder after dividing it by x.
Can you make the array strictly increasing in no more than n+1 operations?

Input
The first line contains an integer n (1≤n≤2000), the number of elements in the array a.

The second line contains n space-separated integers a1, a2, …, an (0≤ai≤105), the elements of the array a.

Output
On the first line, print the number of operations you wish to perform. On the next lines, you should print the operations.

To print an adding operation, use the format “1 i x”; to print a modding operation, use the format “2 i x”. If i or x don’t satisfy the limitations above, or you use more than n+1 operations, you’ll get wrong answer verdict.

input
3
1 2 3

output
0

input
3
7 6 3

output
2
1 1 1
2 2 4

Note
In the first sample, the array is already increasing so we don’t need any operations.

In the second sample:

In the first step: the array becomes [8,6,3].

In the second step: the array becomes [0,2,3].

题解:我把数组中的每个数都加上一个1e5 然后再对其中的每一个数进行取余,变成从 0 1 … n - 1 的一个序列

#include<bits/stdc++.h>
using namespace std;
const int N = 2005;
int n,a[N];
int main(){
	scanf("%d",&n);
	for(int i = 1;i <= n;i++) scanf("%d",a + i);
	printf("%d\n1 %d 100000\n",n + 1,n);
	for(int i = 1;i <= n;i++)
		printf("2 %d %d\n",i,a[i] + 100000 - i);
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值