分银子
Posted 小时のblog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分银子相关的知识,希望对你有一定的参考价值。
题目描述:
座山雕分银子给他们的兄弟们,发银子之前大伙发表意见。认为分给a的银子应该大于b。
输入:
n m(n个人,m个意见)
x y(认为x应该比y分的银子多)
m行
输出
最少分掉的银子。(最少分100两)
n<10000 m<20000
【思路】
拓扑排序
双队列很巧妙啊 我一开始怎么作都作不出来。ORZ
每一个人分的银子都是他前一个人的银子+1
我没有找到评测网站....
【code】
#include<iostream> #include<cstdio> #include<queue> using namespace std; int n,m,ans,r[100],cnt; vector<int>vec[100]; queue<int>q; queue<int>spt; void topsort() { for(int i=1;i<=n;i++) { if(!r[i]) { q.push(i); spt.push(100); } } while(!q.empty()) { int now=q.front();q.pop(); int c=spt.front();spt.pop(); ans+=c; cnt++; for(int i=0;i<vec[now].size();i++) { r[vec[now][i]]--; if(!r[vec[now][i]]) { q.push(vec[now][i]); spt.push(c+1); } } } } int main() { scanf("%d%d",&n,&m); for(int i=1;i<=m;i++) { int x,y; scanf("%d%d",&x,&y); vec[y].push_back(x); r[x]++; } topsort(); if(cnt!=n)printf("Unhappy!\n"); else printf("%d\n",ans); return 0; }
以上是关于分银子的主要内容,如果未能解决你的问题,请参考以下文章