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

432B - Football Kit

时间:2014-06-05 14:27:48      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

解题思路:

暴力绝对TLE

一个队伍穿主场球衣的次数 = 这个队伍的客场球衣颜色与其他队主场球衣颜色起冲突的次数 + (n - 1)

bubuko.com,布布扣
#include <stdio.h>
#include <string.h>
#include <iostream>
using namespace std;
const int MAXSIZE = 100;
const int INF = 0x3f3f3f3f;

int a[100001], b[100001], c[100001], cnt[100001];
int main(){
    int t, i, j, m, n;
    memset(c, 0, sizeof(c));
    memset(cnt, 0, sizeof(cnt));
    scanf("%d",&n);
    for(i = 1; i <= n; ++i){
        scanf("%d%d",&a[i],&b[i]);
        ++cnt[a[i]];
    }
    for(i = 1; i <= n; ++i){
        c[i] += n - 1;
        c[i] += cnt[b[i]];
    }
    int temp = (n - 1) * 2;
    for(i = 1; i <= n; ++i){
        printf("%d %d\n",c[i],temp - c[i]);
    }
    return 0;
}
bubuko.com,布布扣

 

432B - Football Kit,布布扣,bubuko.com

432B - Football Kit

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/wushuaiyi/p/3769045.html

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