[bzoj4419][Shoi2013]发微博(STL)

题目:

我是超链接

题解:

这迭代器真是。。像外星文。。
考虑一个人A和另一个人B从有关系开始到解除关系对于答案的贡献,每次把贡献加上。
因为数组开不下运用STL中的set
最后因为还有没解除关系的,所以运用迭代器啦!
输出坑爹!

代码:

#include <cstdio>
#include <set>
#include <algorithm>
#include <iostream>
using namespace std;
int ans[200005],cnt[200005];
int n,m,i,x,y;
set<int>ha[200005];
int main()
{
    scanf("%d%d",&n,&m);
    for (i=1;i<=m;i++)
    {
        char st[5];
        scanf("%s",st);
        if (st[0]=='!')
        {
            scanf("%d",&x);
            cnt[x]++;
        }
        else if (st[0]=='+')
        {
            scanf("%d%d",&x,&y);
            ans[y]-=cnt[x];ans[x]-=cnt[y];
            ha[x].insert(y);ha[y].insert(x);
        }
        else
        {
            scanf("%d%d",&x,&y);
            ans[x]+=cnt[y];
            ans[y]+=cnt[x];
            ha[x].erase(y); ha[y].erase(x);
        }
    }
    set<int>::iterator it;
    for (i=1;i<=n;i++)
      for(it=ha[i].begin();it!=ha[i].end();it++)
        ans[*it]+=cnt[i];

    for (i=1;i<n;i++) printf("%d ",ans[i]);
    printf("%d",ans[n]);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值