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

CF 432B :Football Kit

时间:2014-05-17 21:44:37      阅读:504      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   java   

hash做法:

 

bubuko.com,布布扣
#include<stdio.h>
#include<string.h>
const int Max = 100010;
int home[Max],away[Max],hash[Max];
int main()
{
    int n,sum,total;
    int i,j;
    while(scanf("%d",&n)!=EOF)
    {
        sum = 0;
        total = 2*(n-1);
        for(i=0;i<n;i++)
            scanf("%d %d",&home[i],&away[i]);
        memset(hash,0,sizeof(hash));
        for(i=0;i<n;i++)
            hash[home[i]]++;//重复出现的主场number
        for(i=0;i<n;i++)
            printf("%d %d\n",n-1+hash[away[i]],n-1-hash[away[i]]);

    }
    return 0;
}
bubuko.com,布布扣

 

CF 432B :Football Kit,布布扣,bubuko.com

CF 432B :Football Kit

标签:style   blog   class   code   c   java   

原文地址:http://www.cnblogs.com/XDJjy/p/3732863.html

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