zoukankan      html  css  js  c++  java
  • hdu 2647

    Reward

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 4093    Accepted Submission(s): 1240


    Problem Description
    Dandelion's uncle is a boss of a factory. As the spring festival is coming , he wants to distribute rewards to his workers. Now he has a trouble about how to distribute the rewards.
    The workers will compare their rewards ,and some one may have demands of the distributing of rewards ,just like a's reward should more than b's.Dandelion's unclue wants to fulfill all the demands, of course ,he wants to use the least money.Every work's reward will be at least 888 , because it's a lucky number.
     
    Input
    One line with two integers n and m ,stands for the number of works and the number of demands .(n<=10000,m<=20000)
    then m lines ,each line contains two integers a and b ,stands for a's reward should be more than b's.
     
    Output
    For every case ,print the least money dandelion 's uncle needs to distribute .If it's impossible to fulfill all the works' demands ,print -1.
     
    Sample Input
    2 1
    1 2
    2 2
    1 2
    2 1
     
    Sample Output
    1777
    -1
    反向建拓扑图,然后设置一个深度数组,用来记录是第几层
     1 #include<string>
     2 #include<cstdio>
     3 #include<iostream>
     4 #include<vector>
     5 #include<queue>
     6 #include<stack>
     7 #include<algorithm>
     8 #include<cstring>
     9 #include<stdlib.h>
    10 #include<string>
    11 #include<cmath>
    12 using namespace std;
    13 #define pb push_back
    14 vector<int >p[10010];
    15 int in[10010],n,m,deep[10010],num[10010];
    16 void init(){
    17     memset(in,0,sizeof(in));
    18     memset(deep,0,sizeof(deep));
    19     memset(num,0,sizeof(num));
    20     for(int i=0;i<=n;i++) p[i].clear();
    21 }
    22 void tuopu(){
    23     queue<int >ak_47;
    24     int cnt=0;
    25     for(int i=1;i<=n;i++)
    26     if(in[i]==0)
    27         ak_47.push(i),deep[i]=1,num[1]++;
    28     while(!ak_47.empty()){
    29         int pos=ak_47.front();
    30         cnt++;
    31         for(int i=0;i<p[pos].size();i++){
    32             int to=p[pos][i];
    33             if(--in[to]==0) ak_47.push(to),deep[to]=deep[pos]+1,num[deep[to] ]++;
    34         }
    35         ak_47.pop();
    36     }
    37     if(cnt<n){
    38         cout<<-1<<endl;
    39         return ;
    40     }
    41     __int64 sum=0,tmp=888;
    42     for(int i=1;i<=n;i++)
    43         if(num[i]) sum+=num[i]*tmp,tmp++;
    44     cout<<sum<<endl;
    45 }
    46 int main(){
    47     while(cin>>n>>m){
    48         init();
    49         for(int i=1;i<=m;i++){
    50             int a,b;
    51             scanf("%d%d",&a,&b);
    52             in[a]++;
    53             p[b].pb(a);
    54         }
    55         tuopu();
    56     }
    57 }
  • 相关阅读:
    学点 C 语言(39): 函数 使用函数的代价与内联函数(inline)
    学点 C 语言(35): 函数 递归
    学点 C 语言(34): 函数 关于变量(auto、static、register、extern、volatile、restrict)
    学点 C 语言(37): 函数 常量(const)参数
    带进度的文件复制 回复 "冷风无泪" 的问题
    如何把一个程序中 Edit 中的文本赋给另一个程序的 Edit ? 回复 "Disk_" 的问题
    学点 C 语言(32): 函数 返回值
    博客园电子期刊2011年12月刊发布啦
    上周热点回顾(12.261.1)
    上周热点回顾(1.21.8)
  • 原文地址:https://www.cnblogs.com/ainixu1314/p/3896064.html
Copyright © 2011-2022 走看看