Gym - 100543L

Posted war1111

tags:

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

Gym - 100543L
https://vjudge.net/problem/153854/origin
区间dp,要从区间长度为1开始dp

#include<iostream>
#include<cstdio>
#include<queue>
#include<algorithm>
#include<cmath>
#include<ctime>
#include<set>
#include<map>
#include<stack>
#include<cstring>
#define inf 2147483647
#define ls rt<<1
#define rs rt<<1|1
#define lson ls,nl,mid,l,r
#define rson rs,mid+1,nr,l,r
#define N 1010
#define For(i,a,b) for(long long i=a;i<=b;i++)
#define p(a) putchar(a)
#define g() getchar()

using namespace std;
long long T;
long long n,m;
struct node
    long long l;
    long long r;
    long long w;
a[N];
long long b[N],id,Max;
long long f[N][N];
void in(long long &x)
    long long y=1;
    char c=g();x=0;
    while(c<0||c>9)
        if(c==-)y=-1;
        c=g();
    
    while(c<=9&&c>=0)
        x=(x<<1)+(x<<3)+c-0;c=g();
    
    x*=y;

void o(long long x)
    if(x<0)
        p(-);
        x=-x;
    
    if(x>9)o(x/10);
    p(x%10+0);


void clear()
    m=0;
    //memset(f,0,sizeof(f));


int main()
    in(T);
    while(T--)
        clear();
        in(n);
        For(i,1,n)
            in(a[i].l);in(a[i].r);in(a[i].w);
            b[++m]=a[i].l;
            b[++m]=a[i].r;
        
        sort(b+1,b+m+1);
        m=unique(b+1,b+m+1)-b-1;
        For(i,1,n)
            a[i].l=lower_bound(b+1,b+m+1,a[i].l)-b;
            a[i].r=lower_bound(b+1,b+m+1,a[i].r)-b;
        
          For(len,1,m)
            For(l,1,m-len+1)
                int r=l+len-1;
                id=0;
                For(i,1,n)
                    if(a[i].l>=l&&a[i].r<=r)
                        if(id==0||a[i].w>a[id].w)
                            id=i;    
                if(id==0)
                    f[l][r]=0;
                    continue;
                
                f[l][r]=inf;
                For(i,a[id].l,a[id].r)
                    f[l][r]=min(f[l][r],f[l][i-1]+f[i+1][r]+a[id].w);
            
        o(f[1][m]);p(\\n);
    
    return 0;

技术图片

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

Gym Gym 101147G 第二类斯特林数

OpenAI Gym 入门与提高 Gym环境构建与最简单的RL agent

强化学习 平台 openAI 的 gym 安装 (Ubuntu环境下如何安装Python的gym模块)

openai/gym 中各种环境(Env)的参数解释

2016 USP-ICMC-Codeforces-Gym101063C-Sleep Buddies Gym101063F-Bandejao Gym101063J-The Keys

gym 搭建 RL 环境