codeforces Round #261(div2) D解题报告_html/css_WEB-ITnose

php中文网
发布: 2016-06-24 11:55:51
原创
977人浏览过

D. Pashmak and Parmida's problem

time limit per test

3 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Parmida is a clever girl and she wants to participate in Olympiads this year. Of course she wants her partner to be clever too (although he's not)! Parmida has prepared the following test problem for Pashmak.

There is a sequence a that consists of n integers a1,?a2,?...,?an. Let's denote f(l,?r,?x) the number of indices k such that: l?≤?k?≤?r and ak?=?x. His task is to calculate the number of pairs of indicies i,?j (1?≤?i??f(j,?n,?aj).

Help Pashmak with the test.

Input

The first line of the input contains an integer n (1?≤?n?≤?106). The second line contains n space-separated integers a1,?a2,?...,?an (1?≤?ai?≤?109).

立即学习前端免费学习笔记(深入)”;

Output

Print a single integer ? the answer to the problem.

Sample test(s)

input

71 2 1 1 2 2 1
登录后复制

output

input

31 1 1
登录后复制

output

input

51 2 3 4 5
登录后复制

output

题目大意:

给出数组A,定义f(l,r,x)为A[]的下标l到r之间,等于x的元素数。i和j符合f(1,i,a[i])>f(j,n,a[j]),求有多少对这样的(i,j).

解法:

我们可以通过预处理,在O(n)之内,算出f(1, i, a[i]) 定义数组为l[i], 算出f(j, n, a[j]) 定义数组为r[i]。

题目就转化为:求出 l[i] > r[j]  (i

本质上,就是一个求逆序对的做法,用树状数组。

代码:

#include <cstdio>#include <map>#include <iostream>#define LL long long#define N_max 3*1234567using namespace std;map <int, int> l, r;int n;int bit[N_max], a[N_max];LL ans;void init() {	scanf("%d", &n);	for (int i = 1; i <= n; i++)  scanf("%d", &a[i]);}void add(int i, int x) {	while (i <= n) {		bit[i] += x;		i += i&-i;	}}LL sum(int i) {	LL s = 0;	while (i > 0) {		s += bit[i];		i -= i&-i;	}	return s;}void solve() {	l.clear();	r.clear();	for (int i = n; i >= 1; i--) {		l[a[i]]++;		add(l[a[i]], 1);	}	for (int i = 1; i <= n; i++) {		r[a[i]]++;		add(l[a[i]], -1);		l[a[i]]--;				ans += sum(r[a[i]]-1);	}	cout << ans << endl;}int main() {	init();	solve();}
登录后复制

HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号