zoukankan      html  css  js  c++  java
  • Hang Gliding线段树

    参考文章:链接
    题目链接:链接

    题目描述

    The 2020 hang gliding world championships are coming to Florida next spring! (You may think it is odd to hold in Florida a sport that requires mountains, but it turns out that hang gliders can be towed to altitude by other aircraft.) The competition is divided into a set of tasks; completing a task successfully gives a pilot a number of points. Either all points are awarded for a task, or none are. For each task, every pilot has a probability of success. A pilot’s score is the total of all successfully completed tasks at the end of the competition.
    This year, the organizing committee couldn’t decide on a reasonable number of tasks, so the time slots for tasks overlap. At any given time, there can be multiple tasks going on, but a pilot may only choose one to be competing in at that time. Each pilot may compete in as many tasks as they want given this constraint. The pilots know their own strengths and weaknesses, and will choose tasks in order to maximize their expected score.
    You have been offered free hang gliding lessons if you help with scoring software for the event. Among other things, the committee wants the software to be able to predict the winners ahead of time. Given a set of tasks, each with a time slot and a point score to be awarded for success, and a list of pilots, each with success probabilities for each task, compute the expected score for each pilot, and report the top 3 expected scores.

    输入描述

    The first input line contains two integers: t (1 ≤ t ≤ 10000), indicating the number of tasks, and p(3 ≤ p ≤ 100), indicating the number of pilots.
    The next t input lines contain the task descriptions. Each line contains three integers (s, e, and a) separated by a space: 0 ≤ s < e ≤ 10000, s is the start time of the task, and e e e is the end time of the task, in minutes after the competition starts; a (1 ≤ a ≤ 100) is the number of points awarded for the task. Note that the task start times and end times are non-inclusive, i.e., if a task ends at time T and another task starts at time T, a pilot can compete in both tasks.
    After the task descriptions, there are t lines for each pilot. The first t lines in this section are the probabilities of success for each task for pilot 1; the next t lines are the probabilities of success for pilot 2, and so on. The probabilities are floating point numbers in the range 0 to 1, inclusive.

    输出描述

    Print the top 3 pilots. Print, in order of descending expected score, the pilot’s number, a space, and the pilot’s expected score, rounded to 2 decimal places (i.e., a score of 42.494 would be printed as 42.49; a score of 42.495 would be printed as 42.50). Note that pilots are numbered starting at 1, not zero.

    示例

    input:

    3 3 
    0 1 5
    1 2 10
    2 3 15
    0.0
    0.0
    0.2
    1.0
    0.0
    0.0
    0.0
    0.75
    0.0
    

    output:

    3 7.50
    2 5.00
    1 3.00
    

    input:

    3 4 
    0 3 50
    3 6 50
    0 6 75
    0.2
    0.3
    0.6
    0.6
    0.6
    0.5
    0.6
    0.5
    0.4
    0.9
    0.9
    0.9
    

    output:

    4 90.00 
    2 60.00
    3 55.00
    

    题意

    有t个任务,p个人,然后输入t个任务的起止时间和分值
    对于每一个人,都对这t个任务有一个得分的概率(对应接下来输入的p个组,每组t个数,对应t个任务当前这个人得分的概率)
    当一个任务的结束和另一个任务的开始时间重复的时候,可以在一个任务结束之后立马从事该任务(1-2 后 2-3 是可以的)
    对于一个时间段内只能够有一个任务在进行,不能够在同一个时间段内有多个任务同时进行
    问得分最高的三个人的编号以及分数

    solution

    线段树维护区间内已得分数最大值

    int t,p;
    double prob[maxn];
    struct task{
        int s,e,id;
        double val;
    }tsk[maxn];
    struct pilot{
        int id;
        double x;
    }plt[maxn];
    struct node{
        int l,r;
        double w;
    }tree[maxn << 2];
    bool cmp(task tsk1,task tsk2){
        return tsk1.e < tsk2.e;///结束时间从小到大
    }
    bool cmp2(pilot plt1,pilot plt2){
        return plt1.x > plt2.x;
    }
    void PushUp(int rt){
        tree[rt].w = max(tree[rt<<1].w,tree[rt<<1|1].w);
    }
    void Update(int rt,double w){
        tree[rt].w = max(tree[rt].w,w);
    }
    void Build(int rt,int l,int r){
        tree[rt].l = l;
        tree[rt].r = r;
        if(l == r){
            tree[rt].w = 0;/// current value set as zero
            return;
        }
        int mid = l + r >> 1;
        Build(rt<<1,l,mid);
        Build(rt<<1|1,mid+1,r);///divide
        PushUp(rt);///push up
    }
    void UpdatePnt(int rt,int pos,double w){
        if(tree[rt].l == pos && tree[rt].l == tree[rt].r){
            ///Update(rt,w);///改掉
            tree[rt].w = max(tree[rt].w,w);
            return;
        }
        int mid = tree[rt].l + tree[rt].r >> 1;
        if(pos <= mid) UpdatePnt(rt << 1,pos,w);
        else UpdatePnt(rt<<1|1,pos,w);
        PushUp(rt);
    }
    double Query(int rt,int l,int r){
        if(tree[rt].l >= l && tree[rt].r <= r) return tree[rt].w;
        int mid = tree[rt].l + tree[rt].r >> 1;
        if(r <= mid) return Query(rt << 1,l,r);
        else if(l > mid) return Query(rt<<1|1,l,r);
        else return max(Query(rt<<1,l,r),Query(rt<<1|1,l,r));
    }
    int main() {
        t = read,p = read;
        for(int i=1;i<=t;i++){
            cin >> tsk[i].s >> tsk[i].e >> tsk[i].val;
            tsk[i].id = i;
        }
        sort(tsk+1,tsk+1+t,cmp);
        for(int i=1;i<=p;i++){
            for(int j=1;j<=t;j++){
                cin >> prob[j];
            }
            ///
            Build(1,0,maxn);
            for(itn j=1;j<=t;j++){
                double mx = Query(1,0,tsk[j].s);
                int id = tsk[j].id;
                UpdatePnt(1,tsk[j].e,tsk[j].val * prob[id] + mx);
            }
            plt[i].x = tree[1].w;
            plt[i].id = i;
        }
        sort(plt+1,plt+1+p,cmp2);
        for(itn i=1;i<=3;i++){
            printf("%d %.2f
    ",plt[i].id,plt[i].x);
        }
    	return 0;
    }
    
  • 相关阅读:
    Centos7.6安装教程 && history设置显示执行命令的时间
    C# 调用第三方webapi 接口的示例(使用httpclient)
    asp.net core 上传文件
    Sql中CHARINDEX用法---判断数据库某个字段是否包含某个字符
    ASP.NET上传文件出现“404-找不到文件或目录”的解决办法
    C# 中转换的几种方式
    C# 向文件写入和读取文件内容
    C# 中正则表达式
    C# 写的通用得到富文本框中的图片路径
    C# 正则表达式输入验证必须为汉字
  • 原文地址:https://www.cnblogs.com/PushyTao/p/15101043.html
Copyright © 2011-2022 走看看