zoukankan      html  css  js  c++  java
  • uva 12186

    12186 - Another Crisis

    Time limit: 3.000 seconds

    A couple of years ago, a new world wide crisis started, leaving many people with economical problems. Some workers of a particular company are trying to ask for an increase in their salaries.

    The company has a strict hierarchy, in which each employee has exactly one direct boss, with the exception of the owner of the company that has no boss. Employees that are not bosses of any other employee are called workers. The rest of the employees and the owner are called bosses.

    To ask for a salary increase, a worker should file a petition to his direct boss. Of course, each boss is encouraged to try to make their subordinates happy with their current income, making the company's profit as high as possible. However, when at least T percent of its direct subordinates have filed a petition, that boss will be pressured and have no choice but to file a petition himself to his own direct boss. Each boss files at most 1 petition to his own direct boss, regardless on how many of his subordinates filed him a petition. A boss only accounts his direct subordinates (the ones that filed him a petition and the ones that didn't) to calculate the pressure percentage.

    Note that a boss can have both workers and bosses as direct subordinates at the same time. Such a boss may receive petitions from both kinds of employees, and each direct subordinate, regardless of its kind, will be accounted as 1 when checking the pressure percentage.

    When a petition file gets all the way up to the owner of the company, all salaries are increased. The workers' union is desperately trying to make that happen, so they need to convince many workers to file a petition to their direct boss.

    Given the company's hierarchy and the parameter T, you have to find out the minimum number of workers that have to file a petition in order to make the owner receive a petition.

    Input 

    There are several test cases. The input for each test case is given in exactly two lines. The first line contains two integers N and T ( 1$ le$N$ le$105 , 1$ le$T$ le$100), separated by a single space. N indicates the number of employees of the company (not counting the owner) and T is the parameter described above. Each of the employees is identified by an integer between 1 and N. The owner is identified by the number 0. The second line contains a list of integers separated by single spaces. The integer Bi, at position i on this list (starting from 1), indicates the identification of the direct boss of employee i (0$ le$Bi$ le$i - 1).

    The last test case is followed by a line containing two zeros separated by a single space.

    Output 

    For each test case output a single line containing a single integer with the minimum number of workers that need to file a petition in order to get the owner of the company to receive a petition.

    Sample Input 

    3 100 
    0 0 0 
    3 50 
    0 0 0 
    14 60 
    0 0 1 1 2 2 2 5 7 5 7 5 7 5 
    0 0
    

    Sample Output 

    3 
    2 
    5

    这是我正式的第一次做树形dp的题,入门题,并不难,树形dp说到底就是在树结构上进行动态优化。
    #include <cstdio>
    #include <iostream>
    #include <sstream>
    #include <cmath>
    #include <cstring>
    #include <cstdlib>
    #include <string>
    #include <vector>
    #include <map>
    #include <set>
    #include <queue>
    #include <stack>
    #include <algorithm>
    using namespace std;
    #define ll long long
    #define _cle(m, a) memset(m, a, sizeof(m))
    #define repu(i, a, b) for(int i = a; i < b; i++)
    #define MAXN 100005
    int n, T;
    vector<int> v[MAXN];
    
    int dp(int u)
    {
        if(v[u].empty()) return 1;
        int k = v[u].size();
        vector<int> d;
        repu(i, 0, k) d.push_back(dp(v[u][i]));
        sort(d.begin(), d.end());
        int c = (k * T - 1) / 100 + 1;
        int ans = 0;
        repu(i, 0, c) ans += d[i];
        return ans;
    }
    
    int main()
    {
        while(~scanf("%d%d", &n, &T) && (n + T))
        {
            repu(i, 0, n + 1) v[i].clear();
            int t;
            repu(i, 1, n + 1) {
               scanf("%d", &t);
               v[t].push_back(i);
            }
    
            printf("%d
    ", dp(0));
        }
        return 0;
    }
    View Code
     
  • 相关阅读:
    编译gcc报错make[3]: Leaving directory `/usr/local/src/gcc-7.4.0/build/gcc' make[2]: *** [all-stage1-gcc] Error 2 处理
    ERROR 1176 (42000): Key 'XXX' doesn't exist in table 'XXX'报错处理
    /lib64/libc.so.6: version `GLIBC_2.18' not found报错解决
    Centos7上pkg-config的安装
    ERROR: Error in Log_event::read_log_event(): 'Found invalid event in binary log', data_len: 31, event_type: 35报错处理
    MySQL5.7主从复制slave报Last_Errno: 1146错误解决
    详述 hosts 文件的作用及修改 hosts 文件的方法
    Java Decompiler(Java反编译工具)
    使用Charles代理工具导致电脑无法正常访问网站(您的连接不是私密连接)
    阿里云服务器Svn-Server无法连接,阿里云服务器SVNServer配置
  • 原文地址:https://www.cnblogs.com/sunus/p/4575464.html
Copyright © 2011-2022 走看看