write a go solution for Description: You are beta testing the new secret Terraria update. This update will add quests to the game! Simply, the world map can be represented as an array of length n, where the i-th column of the world has height a_i. There are m quests you have to test. The j-th of them is represented by two integers s_j and t_j. In this quest, you have to go from the column s_j to the column t_j. At the start of the quest, you are appearing at the column s_j. In one move, you can go from the column x to the column x-1 or to the column x+1. In this version, you have Spectre Boots, which allow you to fly. Since it is a beta version, they are bugged, so they only allow you to fly when you are going up and have infinite fly duration. When you are moving from the column with the height p to the column with the height q, then you get some amount of fall damage. If the height p is greater than the height q, you get p-q fall damage, otherwise you fly up and get 0 damage. For each of the given quests, determine the minimum amount of fall damage you can get during this quest. Input Format: The first line of the input contains two integers n and m (2<=n<=10^5;1<=m<=10^5) — the number of columns in the world and the number of quests you have to test, respectively. The second line of the input contains n integers a_1,a_2,ldots,a_n (1<=a_i<=10^9), where a_i is the height of the i-th column of the world. The next m lines describe quests. The j-th of them contains two integers s_j and t_j (1<=s_j,t_j<=n;s_jnet_j), which means you have to move from the column s_j to the column t_j during the j-th quest. Note that s_j can be greater than t_j. Output Format: Print m integers. The j-th of them should be the minimum amount of fall damage you can get during the j-th quest completion. Note: None. Output only the code with no comments, explanation, or additional text.