CF1585D.Yet Another Sorting Problem

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Petya has an array of integers a1,a2,,ana_1, a_2, \ldots, a_n . He only likes sorted arrays. Unfortunately, the given array could be arbitrary, so Petya wants to sort it.

Petya likes to challenge himself, so he wants to sort array using only 33 -cycles. More formally, in one operation he can pick 33 pairwise distinct indices ii , jj , and kk ( 1i,j,kn1 \leq i, j, k \leq n ) and apply ijkii \to j \to k \to i cycle to the array aa . It simultaneously places aia_i on position jj , aja_j on position kk , and aka_k on position ii , without changing any other element.

For example, if aa is [10,50,20,30,40,60][10, 50, 20, 30, 40, 60] and he chooses i=2i = 2 , j=1j = 1 , k=5k = 5 , then the array becomes [50,40,20,30,10,60][\underline{50}, \underline{40}, 20, 30, \underline{10}, 60] .

Petya can apply arbitrary number of 33 -cycles (possibly, zero). You are to determine if Petya can sort his array aa , i. e. make it non-decreasing.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t51051 \leq t \leq 5 \cdot 10^5 ). Description of the test cases follows.

The first line of each test case contains a single integer nn ( 1n51051 \leq n \leq 5 \cdot 10^5 ) — the length of the array aa .

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1ain1 \leq a_i \leq n ).

It is guaranteed that the sum of nn over all test cases does not exceed 51055 \cdot 10^5 .

输出格式

For each test case, print "YES" (without quotes) if Petya can sort the array aa using 33 -cycles, and "NO" (without quotes) otherwise. You can print each letter in any case (upper or lower).

输入输出样例

  • 输入#1

    7
    1
    1
    2
    2 2
    2
    2 1
    3
    1 2 3
    3
    2 1 3
    3
    3 1 2
    4
    2 1 4 3

    输出#1

    YES
    YES
    NO
    YES
    NO
    YES
    YES

说明/提示

In the 66 -th test case Petya can use the 33 -cycle 13211 \to 3 \to 2 \to 1 to sort the array.

In the 77 -th test case Petya can apply 13211 \to 3 \to 2 \to 1 and make a=[1,4,2,3]a = [1, 4, 2, 3] . Then he can apply 24322 \to 4 \to 3 \to 2 and finally sort the array.

首页