Long live STL. Codevs 1230.

Source: Internet
Author: User

Title Description Description

Given n positive integers, then there are M queries, each asking an integer asking if the integer has occurred in n positive integers.

Enter a description input Description

The first line is two integers n and M.

Second row n positive integers (1<=n<= 100000)

The third row of M integers (1<=m<=100000)

outputs description output Description

Total M line, if present, output yes, otherwise output no

sample input to sample

4 2

2 1 3 4

1 9

Sample output Sample outputs

YES

NO

Data range and Tips Data Size & Hint

All data are not more than 10^8

Category labels Tags Click here to expand

The STL is a magical thing.

#include <map>#include<iostream>using namespacestd;ints[100001];map<int,BOOL>G;intMain () {intN,m,ss; CIN>>n>>m;  for(intI=1; i<=n;++i) {cin>>S[i]; G[s[i]]=1; }     for(intI=1; i<=m;++i) {cin>>SS; if(g[ss]==1) cout<<"YES"<<Endl; Elsecout<<"NO"<<Endl; }    return 0;}
View Code

Long live STL. Codevs 1230.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.