URAL 1613. For Fans of Statistics(STL 数学啊 )

题目链接:?space=1&num=1613

1613. For Fans of Statistics

Time limit: 1.0 secondMemory limit: 64 MB

Have you ever thought about how many people are transported by trams every year in a city with a ten-million population where one in three citizens uses tram twice a day?

Assume that there arencities with trams on the planet Earth. Statisticians counted for each of them the number of people transported by trams during last year. They compiled a table, in which cities were sorted alphabetically. Since city names were inessential for statistics, they were later replaced by numbers from 1 ton. A search engine that works with these data must be able to answer quickly a query of the following type: is there among the cities with numbers fromltorsuch that the trams of this city transported exactlyxpeople during last year. You must implement this module of the system.

Input

The first line contains the integern, 0 <n< 70000. The second line contains statistic data in the form of a list of integers separated with a space. In this list, theith number is the number of people transported by trams of theith city during last year. All numbers in the list are positive and do not exceed 1091. In the third line, the number of queriesqis given,0 <q< 70000.The nextqlines contain the queries. Each of them is a triple of integersl,r, andxseparated with a space;1 ≤l≤r≤n; 0 <x< 109.

Output

Output a string of lengthqin which theith symbol is “1” if the answer to theith query is affirmative, and “0” otherwise.

Sample

inputoutput

51234567 666666 3141593 666666 434343451 5 31415931 5 5782022 4 6666664 4 71356101 1 123456710101

题意:

给出l, r, num,查找l到r中是否有数字 num;

代码如下:

#include <cstdio>#include <cmath>#include <cstring>#include <string>#include <vector>#include <set>#include <map>#include <iostream>#include <algorithm>using namespace std;map <int, vector<int> > mm;int main(){int n;while(~scanf("%d",&n)){int tt;for(int i = 1; i <= n; i++){scanf("%d",&tt);mm[tt].push_back(i);}int m;scanf("%d",&m);int l, r;int ans[70017];vector<int> ::iterator iter;for(int i = 0; i < m; i++){scanf("%d%d%d",&l,&r,&tt);int len = mm[tt].size();if(len == 0){ans[i] = 0;continue;}iter = lower_bound(mm[tt].begin(), mm[tt].end(),l);if(iter == mm[tt].end() || *iter > r){ans[i] = 0;}else{ans[i] = 1;}}for(int i = 0; i < m; i++){printf("%d",ans[i]);}printf("\n");}return 0;}/*51234567 999999999 1000000000 666666 434343451 5 31415931 5 5782022 4 6666661 5 10000000001 1 1234567*/

,谁说的,人非要快乐不可,好像快乐由得人选择。

URAL 1613. For Fans of Statistics(STL 数学啊 )

相关文章:

你感兴趣的文章:

标签云: