码迷,mamicode.com
首页 > 其他好文 > 详细

oj---九度oj---1156

时间:2017-06-25 20:23:22      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:九度oj   cstring   amp   log   mem   --   include   return   ret   

 

 

#include<cstdio>
#include<cstring>
int book[205];
int buf[205];
int main(){
    int n,m;
    int tmp;
    while(scanf("%d %d",&n,&m)!=EOF){
        memset(book,0,sizeof(book));
        for(int i=0;i<n;i++) {
            scanf("%d",&tmp);
            book[tmp]++;
            buf[i]=tmp;
        }
        for(int i=0;i<n;i++){
            if(book[buf[i]]==1){
                printf("BeiJu\n");    
            }
            else printf("%d\n",book[buf[i]]-1);
        }
    
    }
    return 0;
}

 

oj---九度oj---1156

标签:九度oj   cstring   amp   log   mem   --   include   return   ret   

原文地址:http://www.cnblogs.com/kprac/p/7077631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!