摘要:
暴力,next_permutation函数用于枚举出下一个排列。sscanf函数用于将字符串转化成数字。 1 #include 2 #include 3 #include 4 using namespace std; 5 int n,len,ans; 6 long long x,t; 7 char ... 阅读全文
摘要:
考虑暴力更新的情况,设swap的是L,R位置的数。swap之后的逆序对数应该等于:之前的逆序对数+[L+1,R-1]中比 L位置的数 大的数的个数-[L+1,R-1]中比 L位置的数 小的数的个数-[L+1,R-1]中比 R位置的数 大的数的个数+[L+1,R-1]中比 R位置的数 小的数的个数并且... 阅读全文