Range Swap

AtCoder
IDabc286_a
Time2000ms
Memory256MB
Difficulty
You are given a sequence $A=(A_1,A_2,\ldots,A_N)$ of length $N$ and positive integers $P,Q,R$, and $S$. Here, $P,Q,R$, and $S$ satisfy $1\leq P\leq Q<R\leq S \leq N$ and $Q-P=S-R$. Let $B=(B_1, B_2,\ldots, B_N)$ be the sequence obtained by swapping the $P$\-th through $Q$\-th terms and the $R$\-th through $S$\-th terms of $A$. Print the sequence $B$. ## Constraints * $1\leq N \leq 100$ * $1\leq A_i\leq 100$ * $1\leq P\leq Q<R\leq S \leq N$ * $Q-P=S-R$ * All values in the input are integers. ## Input The input is given from Standard Input in the following format: $N$ $P$ $Q$ $R$ $S$ $A_1$ $A_2$ $\ldots$ $A_N$ [samples]
Samples
Input #1
8 1 3 5 7
1 2 3 4 5 6 7 8
Output #1
5 6 7 4 1 2 3 8

Swapping the $1$\-st through $3$\-rd terms $(1,2,3)$ and the $5$\-th through $7$\-th terms $(5,6,7)$ of the sequence $A=(1,2,3,4,5,6,7,8)$ results in $B=(5,6,7,4,1,2,3,8)$, which should be printed with spaces in between.
Input #2
5 2 3 4 5
2 2 1 1 1
Output #2
2 1 1 2 1

The same integer may occur multiple times in the sequence.
Input #3
2 1 1 2 2
50 100
Output #3
100 50
Input #4
10 2 4 7 9
22 75 26 45 72 81 47 29 97 2
Output #4
22 47 29 97 72 81 75 26 45 2
API Response (JSON)
{
  "problem": {
    "name": "Range Swap",
    "description": {
      "content": "You are given a sequence $A=(A_1,A_2,\\ldots,A_N)$ of length $N$ and positive integers $P,Q,R$, and $S$.   Here, $P,Q,R$, and $S$ satisfy $1\\leq P\\leq Q<R\\leq S \\leq N$ and $Q-P=S-R$. Let $B=(B_1, B_2,",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc286_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You are given a sequence $A=(A_1,A_2,\\ldots,A_N)$ of length $N$ and positive integers $P,Q,R$, and $S$.  \nHere, $P,Q,R$, and $S$ satisfy $1\\leq P\\leq Q<R\\leq S \\leq N$ and $Q-P=S-R$.\nLet $B=(B_1, B_2,...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments