码迷,mamicode.com
首页 > 其他好文 > 详细

[uva11991]map和vector的入门

时间:2018-08-10 19:33:42      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:can   stream   动态   tar   iostream   入门   www.   mat   main   

给你一个长度为n的数组,进行m次询问,每次询问输入k和v,输出第k次出现v时的下标是多少。

n<=1e6

 

 

用vector动态开空间,map使数值结合。map每次查找效率大约为logn。

map的学习资料https://www.cnblogs.com/fnlingnzb-learner/p/5833051.html

 

 1 #include<cstdio>
 2 #include<cstdlib>
 3 #include<cstring>
 4 #include<iostream>
 5 #include<algorithm>
 6 #include<cmath>
 7 #include<vector>
 8 #include<map>
 9 using namespace std;
10 
11 map< int,vector<int> >  a;
12 
13 int main()
14 {
15     freopen("a.in","r",stdin);
16     freopen("a.out","w",stdout);
17     int n,m,x,k;
18     while(scanf("%d%d",&n,&m)!=EOF)
19     {
20         a.clear();
21         for(int i=1;i<=n;i++)
22         {
23             scanf("%d",&x);
24             if(!a.count(x)) a[x]=vector<int>();
25             a[x].push_back(i);
26         }
27         for(int i=1;i<=m;i++)
28         {
29             scanf("%d%d",&k,&x);
30             if(!a.count(x) || a[x].size()<k) printf("0\n");
31             else printf("%d\n",a[x][k-1]);
32         }
33     }
34     return 0;
35 }

 

[uva11991]map和vector的入门

标签:can   stream   动态   tar   iostream   入门   www.   mat   main   

原文地址:https://www.cnblogs.com/KonjakJuruo/p/9456651.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!