CF1088C.Ehab and a 2-operation task
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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?
输入格式
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 .
输出格式
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.
输入输出样例
输入#1
3 1 2 3
输出#1
0
输入#2
3 7 6 3
输出#2
2 1 1 1 2 2 4
说明/提示
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] .