F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Fast Bubble Sort

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 524288/524288 K (Java/Others)
Total Submission(s): 444    Accepted Submission(s): 230


Problem Description
Given an array $A=(a_1,a_2,\ldots,a_m)$ of length $m$, denote by array $B(A)$ the output of a single iteration of bubble sort with input array $A$, i.e., the output of the following algorithm with input array $A$.




You may perform the following operation any number (including zero) of times on the array $A=(a_1,a_2,\ldots,a_m)$:

<ol>
<li> Select an interval $[i,j]$ where $1\leq i\leq j\leq m$, and cyclically shift all elements of $a_i,a_{i+1},\dots,a_{j-1},a_j$ in either direction, so that they become $a_j,a_i,a_{i+1},\dots,a_{j-1}$ or $a_{i+1},\dots,a_{j-1},a_{j},a_{i}$. </li>
</ol>

For example, if we cyclically shift the interval $[1,4]$ of the array $A=[1,2,3,4,5]$ to the right, the resulting array would be $A'=[4,1,2,3,5]$.


You are now given a permutation $P=(p_1,p_2,\ldots,p_n)$ of length $n$ and you need to answer $q$ independent queries of the following form:

<ol>
<li> In the $i$-th query, you are given parameters $1 \le l_i \le r_i \le n$ and you are supposed to find the minimum number of above operations needed to transform the subarray $P[l_i,r_i]$ to $B(P[l_i,r_i])$, where $P[l_i,r_i]= (p_{l_i}, p_{l_i + 1}, \ldots, p_{r_i})$. </li>
</ol>
 

Input
The first line contains an integer $T(1\leq T\leq 10)$ denote the number of test cases.

For each test case, the first line contains two integers $n,q$ ($1 \le n,q \le 10^5$), denoting the length of permutation $P$ and the number of queries, respectively.

The second line contains $n$ distinct integers $p_1,p_2,\ldots,p_n$ ($1 \le p_i \le n$).

Each of the following $q$ lines contains two integers $l_i, r_i$ ($1 \le l_i \le r_i \le n$), denoting the parameters for the $i$-th query.
 

Output
For each query of each test case, output an integer in one line, denoting the answer.
 

Sample Input
1 10 5 3 7 9 2 6 4 5 8 10 1 1 10 2 6 7 9 4 9 3 3
 

Sample Output
2 1 0 1 0
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-05-11 12:59:59, Gzip enabled