A10957 | Anton and Permutation
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Anton likes permutations, especially he likes to permute their elements. Note that a permutation of $n$ elements is a sequence of numbers ${a_{1},a_{2},...,a_{n}}$ , in which every number from $1$ to $n$ appears exactly once.
One day Anton got a new permutation and started to play with it. He does the following operation $q$ times: he takes two elements of the permutation and swaps these elements. After each operation he asks his friend Vanya, how many inversions there are in the new permutation. The number of inversions in a permutation is the number of distinct pairs $(i,j)$ such that $1<=i<j<=n$ and $a_{i}>a_{j}$ .
Vanya is tired of answering Anton's silly questions. So he asked you to write a program that would answer these questions instead of him.
Initially Anton's permutation was ${1,2,...,n}$ , that is $a_{i}=i$ for all $i$ such that $1<=i<=n$ .
One day Anton got a new permutation and started to play with it. He does the following operation $q$ times: he takes two elements of the permutation and swaps these elements. After each operation he asks his friend Vanya, how many inversions there are in the new permutation. The number of inversions in a permutation is the number of distinct pairs $(i,j)$ such that $1<=i<j<=n$ and $a_{i}>a_{j}$ .
Vanya is tired of answering Anton's silly questions. So he asked you to write a program that would answer these questions instead of him.
Initially Anton's permutation was ${1,2,...,n}$ , that is $a_{i}=i$ for all $i$ such that $1<=i<=n$ .
输入格式
The first line of the input contains two integers $n$ and $q$ $(1<=n<=200000,1<=q<=50000)$ — the length of the permutation and the number of operations that Anton does.
Each of the following $q$ lines of the input contains two integers $l_{i}$ and $r_{i}$ $(1<=l_{i},r_{i}<=n)$ — the indices of elements that Anton swaps during the $i$ -th operation. Note that indices of elements that Anton swaps during the $i$ -th operation can coincide. Elements in the permutation are numbered starting with one.
Each of the following $q$ lines of the input contains two integers $l_{i}$ and $r_{i}$ $(1<=l_{i},r_{i}<=n)$ — the indices of elements that Anton swaps during the $i$ -th operation. Note that indices of elements that Anton swaps during the $i$ -th operation can coincide. Elements in the permutation are numbered starting with one.
输出格式
Output $q$ lines. The $i$ -th line of the output is the number of inversions in the Anton's permutation after the $i$ -th operation.
输入输出样例
输入 #1
5 4 4 5 2 4 2 5 2 2
输出 #1
1 4 3 3
输入 #2
2 1 2 1
输出 #2
1
输入 #3
6 7 1 4 3 5 2 3 3 3 3 6 2 1 5 1
输出 #3
5 6 7 7 10 11 8
Consider the first sample.
After the first Anton's operation the permutation will be ${1,2,3,5,4}$ . There is only one inversion in it: $(4,5)$ .
After the second Anton's operation the permutation will be ${1,5,3,2,4}$ . There are four inversions: $(2,3)$ , $(2,4)$ , $(2,5)$ and $(3,4)$ .
After the third Anton's operation the permutation will be ${1,4,3,2,5}$ . There are three inversions: $(2,3)$ , $(2,4)$ and $(3,4)$ .
After the fourth Anton's operation the permutation doesn't change, so there are still three inversions.
After the first Anton's operation the permutation will be ${1,2,3,5,4}$ . There is only one inversion in it: $(4,5)$ .
After the second Anton's operation the permutation will be ${1,5,3,2,4}$ . There are four inversions: $(2,3)$ , $(2,4)$ , $(2,5)$ and $(3,4)$ .
After the third Anton's operation the permutation will be ${1,4,3,2,5}$ . There are three inversions: $(2,3)$ , $(2,4)$ and $(3,4)$ .
After the fourth Anton's operation the permutation doesn't change, so there are still three inversions.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted