时间限制:1 秒
内存限制:32 兆
特殊判题:否
提交:10905
解决:5719
3 80 60 90 60 2 85 66 0 5 60 75 90 55 75 75 0
1 0 2
水题,因为给出的数字在0~100之间,可以直接用桶的思想。
//Asimple #include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <cctype> #include <cstdlib> #include <stack> #include <cmath> #include <string> #include <queue> #define INF 100000 using namespace std; const int maxn = 105; typedef long long ll ; int n, m, num; int a[maxn]; int main(){ while( ~ scanf("%d",&n) && n ){ memset(a,0,sizeof(a)); while( n -- ){ scanf("%d",&num); a[num] ++ ; } scanf("%d",&m); printf("%d\n",a[m]); } return 0; }
原文:http://www.cnblogs.com/Asimple/p/5830384.html