zoukankan      html  css  js  c++  java
  • https://vjudge.net/contest/372814#problem/E

    https://vjudge.net/contest/372814#problem/E

    n=15考虑状压dp

     

    #include <bits/stdc++.h>
    #define inf 2333333333333333
    #define N 1000010
    #define p(a) putchar(a)
    #define For(i,a,b) for(long long i=a;i<=b;++i)
    
    using namespace std;
    long long T,n,tot,temp,ki,pre_pt,cur_pt;
    long long f[1<<16],t[1<<16],pre[1<<16];
    
    struct node{
        string name;
        long long ddl;
        long long t;
    }a[100];
    stack<node>st;
    
    void in(long long &x){
        long long y=1;char c=getchar();x=0;
        while(c<'0'||c>'9'){if(c=='-')y=-1;c=getchar();}
        while(c<='9'&&c>='0'){ x=(x<<1)+(x<<3)+c-'0';c=getchar();}
        x*=y;
    }
    void o(long long x){
        if(x<0){p('-');x=-x;}
        if(x>9)o(x/10);
        p(x%10+'0');
    }
    
    void init(){
        memset(pre,0,sizeof(pre));
        memset(f,0,sizeof(f));
        memset(t,0,sizeof(t));
    }
    
    signed main(){
        in(T);
        while(T--){
            init();
            in(n);
            For(i,1,n){
                cin>>a[i].name;
                in(a[i].ddl);
                in(a[i].t);
            }
            tot=(1<<n)-1;
            For(i,0,tot) f[i]=inf;
            f[0]=0;
            For(S,1,tot){
                for(long long i=n-1;i>=0;i--){
                    if(S&(1<<i)){
                        temp=S^(1<<i);
                        ki=max((long long)0,t[temp]+a[i+1].t-a[i+1].ddl);
                        if(f[temp]+ki<f[S]){
                            f[S]=f[temp]+ki;
                            pre[S]=temp;
                            t[S]=t[temp]+a[i+1].t;
                        }
                    }
                }
            }
            For(i,1,n+1){
                if(i==1){
                    pre_pt=tot;
                }
                else{
                    cur_pt=pre[pre_pt];
                    temp=cur_pt^pre_pt;
                    For(j,0,n-1){
                        if((1<<j)&temp)
                            st.push(a[j+1]);
                    }
                    pre_pt=cur_pt;
                }
            }
            o(f[tot]);p('
    ');
            while(!st.empty()){
                cout<<st.top().name<<endl;
                st.pop();
            }
        }
        return 0;
    }
  • 相关阅读:
    pgfplots画二维图真的很方便,多例比较
    LaTeX技巧206:使用gather输入多行公式的技巧
    LaTeX技巧205:使用split输入多行公式技巧
    LaTeX技巧207:使用align环境输入多行公式的技巧
    LaTeX技巧24:LaTeX常用命令集锦
    CTEX
    Latex常用指令学习
    LATEX数学公式基本语法
    LaTeX使用技巧
    C 命令行参数
  • 原文地址:https://www.cnblogs.com/war1111/p/12878056.html
Copyright © 2011-2022 走看看