CSP-J 2019公交换乘题解

#include <iostream>
using namespace std;
int n,f,h,t,ans,price[100005],tm[100005];
struct node
{
    int pr,time;
    bool flag;
}q[100005];
int main()
{
    cin>>n;
    for(int i=1;i<=n;i++)
    {
        cin>>f>>price[i]>>tm[i];
        if(f==0)
        {
            ans+=price[i];
            t++;
            q[t].pr=price[i];
            q[t].time=tm[i];
            q[t].flag=false;
        }
        else
        {
            int j;
            if(tm[i]>45)
            {
                j=t;
                while(q[j].time+45>tm[i])j--;
                h=j;
            }
            else h=1;
            while(h<=t)
            {
                if(price[i]<=q[h].pr && tm[i]<=q[h].time+45 && q[h].flag==false)
                {
                    q[h].flag=true;
                    break;
                }
                else h++;
            }
            if(h>t)ans+=price[i];
        }
    }
    cout<<ans<<endl;
    return 0;
}
全部评论

相关推荐

巧克力1:双选会不如教室宣讲会
点赞 评论 收藏
分享
一颗宏心:华为HR晚上过了十二点后还给我法消息。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务