锦绣育才【集训题】蛇年之抢红包

描述

新年最开心的当然是抢红包啦!!!小小李当然也会“相亲相爱一家人”里面抢红包和发红包,但他很好奇群里到底谁赚了谁亏了,需要你帮忙统计一下,大年三十晚上在“相亲相爱一家人”中各位家人们抢红包的收获
N个人之间给出N个人之间互相发红包、抢红包的记录,请你统计一下他们抢红包的收获。
image.png

输入描述

输入第一行给出一个正整数N(≤104),即参与发红包和抢红包的总人数,则这些人从1到N编号。随后N行,第i行给出编号为i的人发红包的记录,格式如下:
K N1 P1 ⋯ Nk Pk
其中K(0≤K≤20)是发出去的红包个数,Ni是抢到红包的人的编号,Pi(>0)是其抢到的红包金额(以分为单位)。注意:对于同一个人发出的红包,每人最多只能抢1次,不能重复抢。

输出描述

按照收入金额从高到低的递减顺序输出每个人的编号和收入金额(以元为单位,输出小数点后2位)。每个人的信息占一行,两数字间有1个空格。如果收入金额有并列,则按抢到红包的个数递减输出;如果还有并列,则按个人编号递增输出。

用例输入 1

10
3 2 22 10 58 8 125
5 1 345 3 211 5 233 7 13 8 101
1 7 8800
2 1 1000 2 1000
2 4 250 10 320
6 5 11 9 22 8 33 7 44 10 55 4 2
1 3 8800
2 1 23 2 123
1 8 250
4 2 121 4 516 7 112 9 10
用例输出 1

1 11.63
2 3.63
8 3.63
3 2.11
7 1.69
6 -1.67
9 -2.18
10 -3.26
5 -3.26
4 -12.32

struct Person {
    int id;
    int income;
    int count;
};
bool compare(const Person& a, const Person& b) {
    if (a.income != b.income) {
        return a.income > b.income;
    } else if (a.count != b.count) {
        return a.count > b.count;
    }
    return a.id < b.id;
}

int main() {
    int N;
    std::cin >> N;
    std::vector<Person> people(N + 1);
    for (int i = 1; i <= N; ++i) {
        people[i].id = i;
        people[i].income = 0;
        people[i].count = 0;
    }

    for (int i = 1; i <= N; ++i) {
        int K;
        std::cin >> K;
        int totalSent = 0;
        for (int j = 0; j < K; ++j) {
            int receiver, amount;
            std::cin >> receiver >> amount;
            totalSent += amount;
            people[receiver].income += amount;
            people[receiver].count++;
        }
        people[i].income -= totalSent;
    }

    std::sort(people.begin() + 1, people.end(), compare);

    for (int i = 1; i <= N; ++i) {
        std::cout << people[i].id << " " << std::fixed << std::setprecision(2) << (double)people[i].income / 100.0 << std::endl;
    }

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

༺ཌༀ傲世万物ༀད༻

你的鼓励奖是我最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值