牛客网-2018 美团 CodeM 编程大赛-资格赛-4-分数

ACM模版

描述

这里写图片描述
这里写图片描述

题解

没啥技术含量,考验的是码力……大暴力写就好了。

代码

#include <iostream>
#include <algorithm>
#include <cstring>

using namespace std;

const int MAXN = 555;

struct person
{
    double score;
    int pos;

    bool operator < (const person &rsh) const
    {
        return score > rsh.score;
    }
} p[MAXN];

int n, m, k, C;
int w[MAXN];
int ans[MAXN];
int sco[MAXN][MAXN];

int main()
{
    memset(ans, -1, sizeof(ans));

    cin >> n >> m >> k >> C;

    int sum = 0;
    for (int i = 1; i <= m; i++)
    {
        cin >> w[i];
        sum += w[i];
    }

    int x = 0, y = 0;
    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j <= m; j++)
        {
            cin >> sco[i][j];
            if (sco[i][j] == -1)
            {
                x = i;
                y = j;
            }
        }
    }

    for (int c = 0; c <= C; c++)
    {
        for (int i = 1; i <= n; i++)
        {
            p[i].pos = i;
            p[i].score = 0;
        }

        sco[x][y] = c;
        for (int j = 1; j <= m; j++)
        {
            int max_ = -1;
            for (int i = 1; i <= n; i++)
            {
                max_ = max(max_, sco[i][j]);
            }
            for (int i = 1; i <= n; i++)
            {
                if (max_ > 0)
                {
                    p[i].score += 1.0 * sco[i][j] / max_ * (1.0 * w[j] / sum);
                }
            }
        }

        sort(p + 1, p + n + 1);

        for (int i = 1; i <= n; i++)
        {
            if (i <= k)
            {
                if (ans[p[i].pos] == -1)
                {
                    ans[p[i].pos] = 1;
                }
                else if (ans[p[i].pos] == 1)
                {
                    ans[p[i].pos] = 1;
                }
                else
                {
                    ans[p[i].pos] = 3;
                }
            }
            else
            {
                if (ans[p[i].pos] == -1)
                {
                    ans[p[i].pos] = 2;
                }
                else if (ans[p[i].pos] == 1)
                {
                    ans[p[i].pos] = 3;
                }
            }
        }

        //  随机选取的情况
        if (k < n && p[k].score == p[k + 1].score)
        {
            for (int i = 1; i <= n; i++)
            {
                if (p[i].score == p[k].score)
                {
                    ans[p[i].pos] = 3;
                }
            }
        }
    }

    for (int i = 1; i <= n; i++)
    {
        cout << ans[i] << "\n";
    }

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值