日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

UVA11991 Easy Problem from Rujia Liu? stl

發布時間:2023/12/16 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 UVA11991 Easy Problem from Rujia Liu? stl 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Easy Problem from Rujia Liu?
Time Limit:?1000MS?Memory Limit:?Unknown?64bit IO Format:?%lld & %llu

[Submit]?? [Go Back]?? [Status]??

Description

Problem E

Easy Problem from Rujia Liu?

Though Rujia Liu usually sets hard problems for contests (for example, regional contests like Xi'an 2006, Beijing 2007 and Wuhan 2009, or UVa OJ contests like Rujia Liu's Presents 1 and 2), he occasionally sets easy problem (for example, 'the Coco-Cola Store' in UVa OJ), to encourage more people to solve his problems :D

Given an array, your task is to find the k-th occurrence (from left to right) of an integer v. To make the problem more difficult (and interesting!), you'll have to answer m such queries.

Input

There are several test cases. The first line of each test case contains two integers n, m(1<=n,m<=100,000), the number of elements in the array, and the number of queries. The next line contains n positive integers not larger than 1,000,000. Each of the following m lines contains two integer k and v (1<=k<=n, 1<=v<=1,000,000). The input is terminated by end-of-file (EOF). The size of input file does not exceed 5MB.

Output

For each query, print the 1-based location of the occurrence. If there is no such element, output 0 instead.

Sample Input

8 4 1 3 2 2 4 3 2 1 1 3 2 4 3 2 4 2

Output for the Sample Input

2 0 7 0



//快速查找一個序列中第k個V的下標 #include<iostream> #include<cstring> #include<cstdio> #include<string> #include<algorithm> #include<vector> #include<map>using namespace std;map<int ,vector<int> > miv; int n,m; int v,k; int main() {while(~scanf("%d%d",&n,&m)){miv.clear();for(int i=1;i<=n;i++){scanf("%d",&k);if(miv.count(k)==0) miv[k]=vector<int> {};miv[k].push_back(i);}for(int i=1;i<=m;i++){scanf("%d%d",&k,&v);if(miv.count(v)==0 || miv[v].size()<k)printf("0\n");elseprintf("%d\n",miv[v][k-1]);}}return 0; }

總結

以上是生活随笔為你收集整理的UVA11991 Easy Problem from Rujia Liu? stl的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。