Gym - 101102C

Posted Ritchie丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Gym - 101102C相关的知识,希望对你有一定的参考价值。

题目链接

#include <bits/stdc++.h>
using namespace std;
const int maxn=1e5+5;
int data[maxn],last[maxn],ans;
struct D {
    int id;
    int sc;
    int time;
    D(int id0=0,int sc0=0,int time0=0){
        id=id0;
        sc=sc0;
        time=time0;
    }
};
bool operator < (D a,D b) {
    if(a.sc!=b.sc) return a.sc<b.sc;
    if(a.id!=b.id) return a.id>b.id;
    return a.time<b.time;
}
int main()
{
    int t,n,q,x,p;
    scanf("%d",&t);
    while(t--)
    {
        priority_queue<D> que;
        int ansid=0,anssum=0,ans=0;
        scanf("%d%d",&n,&q);
        for(int i=1;i<=n;i++) que.push(D(i,0,0));
        //printf("%d\n",que.top().id);
        memset(data,0,sizeof(data));
        memset(last,0,sizeof(last));
        ans=1;
        int ansT=0;
        for(int i=1;i<=q;i++)
        {
            scanf("%d%d",&x,&p);
            data[x]+=p;
            last[x]=i;
            while(!que.empty() && que.top().time != last[que.top().id]) que.pop();
            if(x==ans&&p<0) {
                //printf("%d %d---\n",ans,que.top().id);
                //D tmp = que.top();
                //que.pop();
                while(!que.empty() && que.top().time != last[que.top().id]) que.pop();
                //printf("%d %d---\n",ans,que.top().id);
                if(!que.empty()&&(data[ans]<que.top().sc||(data[ans]==que.top().sc && que.top().id<ans))) {
                    ansT = i;
                    ans = que.top().id;
                }
                //que.push(tmp);
            }
            else if(p>=0&&x!=ans&&(data[x]>data[ans]||(data[x]==data[ans]&&x<ans))) {
                ans = x;
                ansT = i;
            }
            que.push(D(x,data[x],i));
        }
        printf("%d\n",ansT);
    }
    return 0;
}

 

以上是关于Gym - 101102C的主要内容,如果未能解决你的问题,请参考以下文章

强化学习笔记:Gym入门--从安装到第一个完整的代码示例

openAi-gym 名称错误

解决使用Monitor出现gym.error.DependencyNotInstalled: Found neither the ffmpeg nor avconv executables的问题(代码

Gym 100917M Matrix, The

gym第一个程序

gym第一个程序