Codeforces 785E 블록 + 트리 배열
time limit per test
4 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output
Anton likes permutations, especially he likes to permute their elements. Note that a permutation of n elements is a sequence of numbers{a1, a2, ..., an}, 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 ai > aj.
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 ai = i for all i such that 1 ≤ i ≤ n.
Input
The first line of the input contains two integers n and q (1 ≤ n ≤ 200 000, 1 ≤ q ≤ 50 000) — 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 li and ri (1 ≤ li, ri ≤ 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
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.
Examples
input
5 4
4 5
2 4
2 5
2 2
output
1
4
3
3
input
2 1
2 1
output
1
input
6 7
1 4
3 5
2 3
3 3
3 6
2 1
5 1
output
5
6
7
7
10
11
8
Note
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.
제목: 1-n의 서열q개 조작 각 조작 후 출력은 몇 개의 역순수
문제풀이: 블록폭력 블록마다 나무모양수 그룹을 만들어서 하면 돼요.
#include
#include
#include
#include
#include
using namespace std;
typedef long long ll;
int a[200001],L[450],R[450],C[449][200001],belong[200001],n;
void change(int k,int x,int v){
for(;x<=n;x+=x&-x)
C[k][x]+=v;
}
int sum(int k,int x){
int ret=0;
for(;x;x-=x&-x)
ret+=C[k][x];
return ret;
}
int main(){
int i,j,m;
scanf("%d%d",&n,&m);
int len=sqrt(n);
for(i=1;i<=449;i++)L[i]=999999;
if(len*lenr)swap(l,r);
if(l==r){
printf("%lld
",now);
continue;
}
int bl=belong[l],br=belong[r];
int sum1=0,sum2=0,len=r-l-1;
if(bl==br){
for(j=l+1;ja[l])sum1++;
if(a[j]a[r])now++;
else now--;
printf("%lld",now);
continue;
}
else{
for(j=l+1;j<=R[bl];j++){
if(a[j]>a[l])sum1++;
if(a[j]a[l])sum1++;
if(a[j]a[r])now++;
else now--;
printf("%lld",now);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
hdu2227---Find the nondecreasing subsequences (dp+ 트리 배열)Problem Description How many nondecreasing subsequences can you find in the sequence S = {s1, s2, s3, …., sn} ? For exam...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.