码迷,mamicode.com
首页 > 其他好文 > 详细

【Codeforces 1096D】Easy Problem

时间:2019-03-14 00:52:11      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:int()   tar   readline   start   def   xxxxx   lse   mat   runtime   

【链接】 我是链接,点我呀:)
【题意】


让你将一个字符串删掉一些字符。
使得字符串中不包含子序列"hard"
删掉每个字符的代价已知为ai
让你求出代价最小的方法.

【题解】


设dp[i][j]表示前i个字符,已经和"hard"匹配前j个的最小花费。
对于dp[i][j]
对s[i+1]分类讨论
①s[i+1]不删
那么有两种情况
第一种:s[i+1]和"hard"的第j+1个字符匹配
第二种:..xxxxx不匹配
则分别转移到dp[i+1][j+1]和dp[i+1][j]
②s[i+1]删掉
转移到dp[I+1][j]且用dp[i][j]+a[i+1]尝试转移。

【代码】

import java.io.*;
import java.util.*;

public class Main {
    
    
    static InputReader in;
    static PrintWriter out;
        
    public static void main(String[] args) throws IOException{
        //InputStream ins = new FileInputStream("E:\\rush.txt");
        InputStream ins = System.in;
        in = new InputReader(ins);
        out = new PrintWriter(System.out);
        //code start from here
        new Task().solve(in, out);
        out.close();
    }
    
    static int N = (int)1e5;
    static class Task{
        
        int n;
        String s;
        long a[] = new long[N+10];
        String goal=new String(" hard");
        long dp[][] = new long[N+10][10];
        
        public void solve(InputReader in,PrintWriter out) {
            n = in.nextInt();
            s = in.next();
            s = " "+s;
            for (int i = 1;i <=n;i++) a[i] = in.nextLong();
            for (int i = 0;i <= N;i++) 
                for (int j = 0;j <= 8;j++)
                    dp[i][j] = (long)(1e17);
            dp[0][0] = 0;
            for(int i = 0;i < n;i++)
                for (int j = 0;j <= 3;j++) {
                    //第i+1个不删
                    if (s.charAt(i+1)==goal.charAt(j+1)) {
                        dp[i+1][j+1] = Math.min(dp[i+1][j+1], dp[i][j]);
                    }else {
                        dp[i+1][j] = Math.min(dp[i+1][j], dp[i][j]);
                    }
                    
                    //第i+1个删掉
                    dp[i+1][j] = Math.min(dp[i+1][j], dp[i][j]+a[i+1]);
                }
            long ans = dp[n][0];
            for (int i = 1;i <= 3;i++) {
                ans = Math.min(ans, dp[n][i]);
            }
            out.println(ans);
        }
    }

    

    static class InputReader{
        public BufferedReader br;
        public StringTokenizer tokenizer;
        
        public InputReader(InputStream ins) {
            br = new BufferedReader(new InputStreamReader(ins));
            tokenizer = null;
        }
        
        public String next(){
            while (tokenizer==null || !tokenizer.hasMoreTokens()) {
                try {
                tokenizer = new StringTokenizer(br.readLine());
                }catch(IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }
        
        public int nextInt() {
            return Integer.parseInt(next());
        }
        
        public long nextLong() {
            return Long.parseLong(next());
        }
    }
}

【Codeforces 1096D】Easy Problem

标签:int()   tar   readline   start   def   xxxxx   lse   mat   runtime   

原文地址:https://www.cnblogs.com/AWCXV/p/10527356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!