2017级算法第二次上机-E.SkyLee的图书整理
Posted visper
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017级算法第二次上机-E.SkyLee的图书整理相关的知识,希望对你有一定的参考价值。
这道题考察了map函数的使用,map最简单的理解就是把一个数映射到一个数。然后使用map也类似hash数组的方法即可
map的头文件是<map> map<int,int> 将一个数映射到一个数
#include <algorithm> #include <iostream> #include <map> using namespace std; int main(){ int n,t,x,i,j,k; while(~scanf("%d %d",&n,&t)){ map<int,int> count; for(i=0;i<n;i++){ scanf("%d",&x); count[x]++; } for(i=0;i<t;i++){ scanf("%d",&x); printf("%d ",count[x]); } printf(" "); } return 0; }
以上是关于2017级算法第二次上机-E.SkyLee的图书整理的主要内容,如果未能解决你的问题,请参考以下文章
P2-2017级算法第二次上机 A ModricWang‘s Real QuickSort Query