传统题 1000ms 256MiB

B - 0 or 1 Swap

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

B - 0 or 1 Swap

Score : $200$ points

Problem Statement

We have a sequence $p$ = {$p_1,\ p_2,\ ...,\ p_N$} which is a permutation of {$1,\ 2,\ ...,\ N$}.

You can perform the following operation at most once: choose integers $i$ and $j$ $(1 \leq i < j \leq N)$, and swap $p_i$ and $p_j$. Note that you can also choose not to perform it.

Print YES if you can sort $p$ in ascending order in this way, and NO otherwise.

Constraints

  • All values in input are integers.
  • $2 \leq N \leq 50$
  • $p$ is a permutation of {$1,\ 2,\ ...,\ N$}.

Input

Input is given from Standard Input in the following format:

NN

p1p_1 p2p_2 ...... pNp_N

Output

Print YES if you can sort $p$ in ascending order in the way stated in the problem statement, and NO otherwise.


5
5 2 3 4 1
YES

You can sort $p$ in ascending order by swapping $p_1$ and $p_5$.


5
2 4 3 5 1
NO

In this case, swapping any two elements does not sort $p$ in ascending order.


7
1 2 3 4 5 6 7
YES

$p$ is already sorted in ascending order, so no operation is needed.

2024暑假入门组刷题营第三期(八)

未参加
状态
已结束
规则
IOI
题目
8
开始于
2024-7-16 13:00
结束于
2024-7-16 15:00
持续时间
2 小时
主持人
参赛人数
10