(树状数组)POJ - 2299 Ultra-QuickSort

原题链接:http://poj.org/problem?id=2299



题意:求冒泡排序交换数字的次数



分析:起初听别人说挑战上的冒泡排序交换次数,一直是一头雾水。某天仔细想想,瞬间懂了。

其实就是把给数列按照给你的顺序插入到另一个数组中,插入的位置就是这个数在已经排好序的情况下所在的位置。所以前面的都是比它小,后面的都比它大。

通过很便捷的计算就能算出答案。

for (int j = 0; j < n; j++)[
    ans += j - sum(a[j]);
    add(a[j], 1);
]

sum(a[j])就是<=a[j]的已经插入的数的个数,j-sum(a[j])就是>a[j]的个数。

但是本题999999999过大,需要离散化。



代码:

 1 const int maxn = 500010;
 2 int bit[maxn];
 3 struct Num {
 4     int val;
 5     int pos;
 6     bool operator <(const Num &a)const {
 7         return val < a.val;
 8     }
 9 }num[maxn];
10 int n;
11
12 int lowbit(int x) {
13     return x&-x;
14 }
15
16 int sum(int i) {
17     int res = 0;
18     while (i > 0) {
19         res += bit[i];
20         i -= lowbit(i);
21     }
22     return res;
23 }
24
25 void add(int i, int x) {
26     while (i <= n) {
27         bit[i] += x;
28         i += lowbit(i);
29     }
30 }
31
32
33
34
35 void solve() {
36     while (cin >> n&&n) {
37         memset(bit, 0, sizeof(bit));
38         ll ans = 0;
39         for (int i = 0; i < n; i++) {
40             cin >> num[i].val;
41             num[i].pos = i;
42         }
43         sort(num, num + n);
44         for (int i = 0; i < n; i++) {
45             int tmp = sum(num[i].pos + 1);
46             cout << tmp << endl << endl;
47             ans += i - tmp;
48             add(num[i].pos + 1, 1);
49         }
50         cout << ans << endl;
51     }
52 }
时间: 2024-10-11 16:47:20

(树状数组)POJ - 2299 Ultra-QuickSort的相关文章

线段树/树状数组 POJ 2182 Lost Cows

题目传送门 题意:n头牛,1~n的id给它们乱序编号,已知每头牛前面有多少头牛的编号是比它小的,求原来乱序的编号 分析:从后往前考虑,最后一头牛a[i] = 0,那么它的编号为第a[i] + 1编号:为1,倒数第二头牛的编号为除去最后一头牛的编号后的第a[i-1] + 1编号:为3,其他的类推,所以可以维护之前已经选掉的编号,求第k大的数字,sum[rt] 表示该区间已经被选掉的点的个数.另外树状数组也可以做,只不过用二分优化查找第k大的位置. 收获:逆向思维,求动态第K大 代码(线段树): /

树状数组 POJ 2481 Cows

题目传送门 1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 using namespace std; 5 6 const int MAX_N = 100000 + 10; 7 int cnt[MAX_N]; 8 int ans[MAX_N]; 9 int maxn = -1; 10 struct node 11 { 12 int s, e; 13 int id; 14 }cow[MAX_

LCA+树状数组 POJ 2763 Housewife Wind

题目传送门 题意:两种操作,问u到v的距离,并且u走到了v:把第i条边距离改成w 分析:根据DFS访问顺序,将树处理成链状的,那么回边处理成负权值,那么LCA加上BIT能够知道u到v的距离,BIT存储每条边的信息,这样第二种操作也能用BIT快速解决 利用RMQ的写法不知哪里写挫了,改用倍增法 /************************************************ * Author :Running_Time * Created Time :2015/10/6 星期二

( 树状数组) poj 2029

Get Many Persimmon Trees Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 3700   Accepted: 2405 Description Seiji Hayashi had been a professor of the Nisshinkan Samurai School in the domain of Aizu for a long time in the 18th century. In

(树状数组) poj 3067

Japan Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 21769   Accepted: 5885 Description Japan plans to welcome the ACM ICPC World Finals and a lot of roads must be built for the venue. Japan is tall island with N cities on the East coas

(树状数组) poj 2481

Cows Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 13421   Accepted: 4442 Description Farmer John's cows have discovered that the clover growing along the ridge of the hill (which we can think of as a one-dimensional number line) in hi

[qbzt寒假]线段树和树状数组

树状数组 \(lowbit(x)=x\&(-x)\) 二维树状数组 修改某个点,查询(1,1)到(n,m)的前缀和(树状数组要从1开始) HDU2642 Stars \(YFF\)是个浪漫的人,他喜欢数天上的星星. 为了解决这个问题,我们考虑到天空是一个二维平面,有时星星会很亮,有时星星会很暗.首先,天空中没有明亮的星星,然后一些信息会被给出为"\(B\) \(x\) \(y\)",其中"\(B\)"表示明亮,\(x\)表示\(x\)坐标,\(y\)表示在\

poj 2299 Ultra-QuickSort 离散化 + 树状数组

题目链接:http://poj.org/problem?id=2299 离散化 + 树状数组 教科书例题般的题目 #include <iostream> #include <cstdio> #include <cstring> #include <queue> #include <cmath> #include <vector> #include <stack> #include <set> #include

树状数组求逆序对:POJ 2299、3067

前几天开始看树状数组了,然后开始找题来刷. 首先是 POJ 2299 Ultra-QuickSort: http://poj.org/problem?id=2299 这题是指给你一个无序序列,只能交换相邻的两数使它有序,要你求出交换的次数.实质上就是求逆序对,网上有很多人说它的原理是冒泡排序,可以用归并排序来求出,但我一时间想不出它是如何和归并排序搭上边的(当初排序没学好啊~),只好用刚学过的树状数组来解决了.在POJ 1990中学到了如何在实际中应用上树状数组,没错,就是用个特殊的数组来记录即

poj 2299 Ultra-QuickSort (树状数组+离散化)

Ultra-QuickSort Time Limit: 7000MS   Memory Limit: 65536K Total Submissions: 48257   Accepted: 17610 Description In this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swappin