#19332: 喔yes答案


yp10870744 (Peter!!!)

學校 : 臺北市私立延平高級中學
編號 : 104313
來源 : [203.72.178.252]
最後登入時間 :
2020-01-09 17:01:40
d732. 二分搜尋法 | From: [203.72.178.252] | 發表日期 : 2019-09-25 16:47

#include <iostream>

#include <iomanip>

#include <cstring>

#include <sstream>

#include <cstdio>

#include <cmath>

#include <stdlib.h>

#include <fstream>

#include <vector>

#include <algorithm>

#include <unordered_map>

 

#define maxn 100001

typedef long long ll;

 

using namespace std;

 

int main(int argc, const char * argv[])

{

    ios_base::sync_with_stdio(false);

    cin.tie(0);

    

    int n,k,reg;

    while (cin>>n>>k) {

        unordered_map<intint> MA;

        for(int j=1; j<=n ;j++)

            {cin>>reg;MA[reg]=j;}

        for(int j=0; j<k ;j++)

        {

            cin>>reg;

            if(MA[reg]>0)   cout<<MA[reg]<<endl;

            else if(MA[reg]>n||MA[reg]<=0)   cout<<"0"<<endl;

            

        }

    }

    

    return 0;

}

 
ZeroJudge Forum