CodeForces 459D Pashmak and Parmida's problem

题目链接:http://codeforces.com/problemset/problem/459/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 < j ≤ n) such that f(1, i, ai) > 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.

Examples

Input
7
1 2 1 1 2 2 1
Output
8
Input
3
1 1 1
Output
1
Input
5
1 2 3 4 5
Output
0

思路:先正着、逆着分别将各个区间的值算出来,然后对于逆着的区间,只有小于其下标的值才会影响答案,因此,对于每个正着的区间,在计算其结果时,大于其下标的必须要被判断计算,这样就很容易想到用树状数组来维护,将正着的区间倒着计算,并将大于其下标的值插入树状数组计数即可。注意:本题数据可能很大,开始计数可以选择用map来实现。详见代码。


附上AC代码:

#include <cstdio>
#include <cstring>
#include <map>
using namespace std;
typedef long long ll;
const int maxn = 1000005;
int num[maxn], a[maxn], b[maxn];
int n;
map<int, int> cnt;

int lowbit(int x){
	return x&(-x);
}

void add(int p){
	while (p <= n){
		++num[p];
		p += lowbit(p);
	}
}

ll sum(int p){
	ll ans = 0;
	while (p > 0){
		ans += num[p];
		p -= lowbit(p);
	}
	return ans;
}

int main(){
	while (~scanf("%d", &n)){
		for (int i=1; i<=n; ++i)
			scanf("%d", num+i);
		cnt.clear();
		for (int i=1; i<=n; ++i){
			++cnt[num[i]];
			a[i] = cnt[num[i]];
		}
		cnt.clear();
		for (int i=n; i>=1; --i){
			++cnt[num[i]];
			b[i] = cnt[num[i]];
		}
//		for (int i=1; i<=n; ++i)
//			printf("%d%c", a[i], i!=n ? ' ' : '\n');
//		for (int i=1; i<=n; ++i)
//			printf("%d%c", b[i], i!=n ? ' ' : '\n');
		memset(num, 0, sizeof(num));
		ll ans = 0;
		for (int i=n-1; i>=1; --i){
			add(b[i+1]);
			//printf("%I64d\n", sum(a[i]-1));
			ans += sum(a[i]-1);
		}
		printf("%I64d\n", ans);
	}
	return 0;
}


### Codeforces Problem 1014D 解答与解释 当前问题并未提供关于 **Codeforces Problem 1014D** 的具体描述或相关背景信息。然而,基于常见的竞赛编程问题模式以及可能涉及的主题领域(如数据结构、算法优化等),可以推测该问题可能属于以下类别之一: #### 可能的解法方向 如果假设此问题是典型的计算几何或者图论类题目,则通常会涉及到如下知识点: - 图遍历(DFS 或 BFS) - 贪心策略的应用 - 动态规划的状态转移方程设计 由于未给出具体的输入输出样例和约束条件,这里无法直接针对Problem 1014D 提供精确解答。但是可以根据一般性的解决思路来探讨潜在的方法。 对于类似的复杂度较高的题目,在实现过程中需要注意边界情况处理得当,并且要充分考虑时间效率的要求[^5]。 以下是伪代码框架的一个简单例子用于说明如何构建解决方案逻辑流程: ```python def solve_problem(input_data): n, m = map(int, input().split()) # 初始化必要的变量或数组 graph = [[] for _ in range(n)] # 构建邻接表或其他形式的数据表示方法 for i in range(m): u, v = map(int, input().split()) graph[u].append(v) result = [] # 执行核心算法部分 (比如 DFS/BFS 遍历) visited = [False]*n def dfs(node): if not visited[node]: visited[node] = True for neighbor in graph[node]: dfs(neighbor) result.append(node) for node in range(n): dfs(node) return reversed(result) ``` 上述代码仅为示意用途,实际应用需依据具体题目调整细节参数设置及其功能模块定义[^6]。 #### 关键点总结 - 明确理解题意至关重要,尤其是关注特殊测试用例的设计意图。 - 对于大规模数据集操作时应优先选用高效的时间空间性能表现良好的技术手段。 - 结合实例验证理论推导过程中的每一步骤是否合理有效。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值