uva 11991 查询数字 映射与Hash

题意:

给定一个数组,查询第k个出现的v的位置


通过map<int, vector<int> >缩短查询时间


#include <iostream>
#include <vector>
#include <map>
#include <list>
#include <set>
#include <deque>
#include <stack>
#include <queue>
#include <algorithm>
#include <cmath>
#include <cctype>
#include <cstdio>
#include <iomanip>
#include <cmath>
#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <cstring>
#include <queue>
using namespace std;

///宏定义
const int  INF = 990000000;
const int maxn = 150 ;
const int MAXN = maxn;
///全局变量 和 函数
int T;
int max(int a, int b)
{
	return a > b ? a : b;
}


int n, m;
map<int, vector<int> > dic;
int main()
{
	///变量定义
	int i, j;	
	while(scanf("%d %d", &n, &m) != EOF)
	{
		dic.clear();
		for (i = 1; i <= n; i++)
		{
			int num;
			scanf("%d", &num);
			if (dic.count(num) == 0)
			{
				vector<int> arrayNum;
				arrayNum.push_back(i);
				dic.insert(make_pair(num, arrayNum));
			}
			else
			{
				dic[num].push_back(i);
			}
		}

		for (i = 0; i < m; i++)
		{
			int k, v;
			scanf("%d %d", &k, &v);
			if (dic.count(v) == 0 || dic[v].size() < k)
			{
				printf("%d\n", 0);
			}
			else
			{
				printf("%d\n", dic[v][k - 1]);
			}
		}

	}

	
	///结束
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值