oj--九度oj--1018

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oj--九度oj--1018相关的知识,希望对你有一定的参考价值。

简单hash

 

#include<cstdio>
#include<cstring>
int grade[101];
int main(){
    int n;
    int x;
    while(scanf("%d",&n)!=EOF){
        if(n==0) break;
        memset(grade,0,sizeof(grade)); 
        for(int i=0;i<n;i++){
            scanf("%d",&x);
            grade[x]++;
        }
        scanf("%d",&x);
        printf("%d\n",grade[x]);
    }
    return 0;
}

 

以上是关于oj--九度oj--1018的主要内容,如果未能解决你的问题,请参考以下文章

(状压) Brush (IV) (Light OJ 1018)

NEUQACM OJ1018: A+B again

九度oj 题目1397:查找数段

九度OJ-题目1009:二叉搜索树

九度OJ平台练习 —— 题目1009

九度oj1002