• UVA 12186 Another Crisis(工人的请愿书)(树形dp)


    题意:某公司有1个老板和n(n<=105)个员工组成树状结构,除了老板之外每个员工都有唯一的直属上司。老板的编号为0,员工编号为1~n。无下属的员工(叶子)打算签署一项请愿书递给老板,但不能跨级递,只能递给直属上司。当一个中级员工(非叶子)的直属下属中不小于T%的人签字时,他也会签字并且递给他的直属上司。问:要让公司老板收到请愿书,至少需要多少个工人签字?

    分析:

    1、dfs(u)表示让u给上级发信最少需要多少个工人。

    2、需要在u的孩子结点中选择不小于T%的人数,这些人所需的工人签字越少越好,所以需要排序。

    #pragma comment(linker, "/STACK:102400000, 102400000")
    #include<cstdio>
    #include<cstring>
    #include<cstdlib>
    #include<cctype>
    #include<cmath>
    #include<iostream>
    #include<sstream>
    #include<iterator>
    #include<algorithm>
    #include<string>
    #include<vector>
    #include<set>
    #include<map>
    #include<stack>
    #include<deque>
    #include<queue>
    #include<list>
    #define Min(a, b) ((a < b) ? a : b)
    #define Max(a, b) ((a < b) ? b : a)
    const double eps = 1e-8;
    inline int dcmp(double a, double b){
        if(fabs(a - b) < eps) return 0;
        return a > b ? 1 : -1;
    }
    typedef long long LL;
    typedef unsigned long long ULL;
    const int INT_INF = 0x3f3f3f3f;
    const int INT_M_INF = 0x7f7f7f7f;
    const LL LL_INF = 0x3f3f3f3f3f3f3f3f;
    const LL LL_M_INF = 0x7f7f7f7f7f7f7f7f;
    const int dr[] = {0, 0, -1, 1, -1, -1, 1, 1};
    const int dc[] = {-1, 1, 0, 0, -1, 1, -1, 1};
    const int MOD = 1e9 + 7;
    const double pi = acos(-1.0);
    const int MAXN = 1e5 + 10;
    const int MAXT = 10000 + 10;
    using namespace std;
    vector<int> v[MAXN];
    int N, T;
    int dfs(int cur){
        int len = v[cur].size();
        if(!len) return 1;
        vector<int> tmp;
        for(int i = 0; i < len; ++i){
            tmp.push_back(dfs(v[cur][i]));
        }
        sort(tmp.begin(), tmp.end());
        int cnt = (int)ceil(len * (double)T / 100);
        int ans = 0;
        for(int i = 0; i < cnt; ++i){
            ans += tmp[i];
        }
        return ans;
    }
    int main(){
        while(scanf("%d%d", &N, &T) == 2){
            if(!N && !T) return 0;
            for(int i = 0; i < MAXN; ++i) v[i].clear();
            for(int i = 1; i <= N; ++i){
                int x;
                scanf("%d", &x);
                v[x].push_back(i);
            }
            printf("%d\n", dfs(0));
        }
        return 0;
    }
    

      

  • 相关阅读:
    【转载】远程桌面协议浅析(VNC/SPICE/RDP)
    【yumex图形安装双击】【转载】CentOS yum的详细使用方法
    【转载】复制文件到已存在的Jar
    黑马程序猿——19,Collections工具类,Arrays工具类,高级for循环,可变參数,静态导入
    在UIView中加入应用下载信息模块
    TCP/IP 寻址
    软考征程之Pv操作
    4:2:0 Video Pixel Formats
    hdu 4908 Task schedule 须要预处理
    sql serve 跨server查询数据方法
  • 原文地址:https://www.cnblogs.com/tyty-Somnuspoppy/p/6426288.html
Copyright © 2020-2023  润新知