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

【Henu ACM Round#16 B】 Bear and Colors

时间:2018-01-26 14:14:02      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:amp   down   problem   black   using   body   force   pac   and   

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】
O(n^2)枚举每一个区间。
然后维护这个区间里面的“统治数字"是什么。
对于每个区间cnt[统治数字]++;

【代码】


#include <bits/stdc++.h>
using namespace std;

const int N = 5000+10;

int n;
int t[5000+10];
int num[5000+10],cnt[N];

int main()
{
    ios::sync_with_stdio(0),cin.tie(0);
    cin >> n;
    for (int i = 1;i <= n;i++) cin >> t[i];
    for (int i = 1;i <= n;i++){
        for (int j= 1;j <= n;j++) num[j] = 0;
        int ma = -1,idx = -1;
        for (int j = i;j <= n;j++){
            num[t[j]]++;
            if (num[t[j]]>ma){
                ma = num[t[j]];
                idx = t[j];
            }else if (num[t[j]]==ma && t[j]<idx){
                idx = t[j];
            }
            cnt[idx]++;
        }
    }
    for (int i = 1;i <= n;i++) cout <<cnt[i]<<' ';
    return 0;
}

【Henu ACM Round#16 B】 Bear and Colors

标签:amp   down   problem   black   using   body   force   pac   and   

原文地址:https://www.cnblogs.com/AWCXV/p/8358938.html

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