解题思路:
离散化 + 树状数组
参考代码:
#include<bits/stdc++.h> using namespace std; const int SIZE = 1024; struct datas { int num, dis; } Num[SIZE]; int BIT[SIZE], total; bool cmp(datas A, datas B) { return A.num < B.num; } int query(int L) { int res = 0; while (L) { res += BIT[L]; L -= L & (-L); } return res; } void updata(int pos, int V) { while (pos <= total) { BIT[pos] += V; pos += pos & (-pos); } } int main() { scanf("%d", &total); for (int i = 1; i <= total; i++) { scanf("%d", &Num[i].num); Num[i].dis = i; } sort(Num + 1, Num + total + 1, cmp); for (int pos = 1; pos <= total; pos++) updata(pos, 1); int ans = 0; for (int i = 1; i <= total; i++) { ans += query(Num[i].dis - 1); updata(Num[i].dis, -1); } printf("%d", ans); }
0.0分
0 人评分
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:634 |
点我有惊喜!你懂得!浏览:2114 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:623 |
C语言训练-排序问题<2> (C++代码)浏览:935 |
【绝对值排序】 (C语言代码)浏览:832 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:643 |
printf基础练习2 (有点不明白)浏览:887 |
printf基础练习2 (C语言代码)浏览:796 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:569 |
简单的a+b (C语言代码)浏览:491 |