結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー tentententen
提出日時 2023-02-09 13:56:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 3,291 bytes
コンパイル時間 5,035 ms
コンパイル使用メモリ 89,324 KB
実行使用メモリ 460,804 KB
最終ジャッジ日時 2023-09-20 22:27:03
合計ジャッジ時間 13,366 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,948 KB
testcase_01 AC 43 ms
49,284 KB
testcase_02 AC 42 ms
49,344 KB
testcase_03 AC 42 ms
49,592 KB
testcase_04 AC 42 ms
49,588 KB
testcase_05 AC 1,159 ms
51,916 KB
testcase_06 AC 57 ms
49,944 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] dp;
    static ArrayList<Integer> values = new ArrayList<>();
    static int a;
    static int b;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        a = sc.nextInt();
        b = sc.nextInt();
        char[] inputs = sc.next().toCharArray();
        int count = 0;
        int max = 0;
        for (int i = 0; i + 2 < n; i++) {
            if (inputs[i] == 'c' && inputs[i + 1] == 'o' && inputs[i + 2] == 'n') {
                count++;
                i += 2;
            } else {
                if (count / a > 0 || count / b > 0) {
                    values.add(count);
                }
                count = 0;
            }
        }
        if (count / a > 0 || count / b > 0) {
            values.add(count);
        }
        dp = new int[values.size()][];
        int sum = 0;
        for (int i = 0; i < values.size(); i++) {
            sum += values.get(i) / a;
            dp[i] = new int[sum + 1];
            Arrays.fill(dp[i], -1);
        }
        int ans = 0;
        for (int i = sum; i >= 0; i--) {
            int x = dfw(values.size() - 1, i);
            int current = Math.min(i, x) * 2;
            if (i > x) {
                current++;
            }
            ans = Math.max(ans, current);
        }
        System.out.println(ans);
    }
    
    static int dfw(int idx, int v) {
        if (idx < 0) {
            if (v == 0) {
                return 0;
            } else {
                return Integer.MIN_VALUE;
            }
        }
        if (v >= dp[idx].length) {
            return Integer.MIN_VALUE;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = Integer.MIN_VALUE;
            int x = values.get(idx);
            for (int i = 0; i * a <= x && i <= v; i++) {
                dp[idx][v] = Math.max(dp[idx][v], dfw(idx - 1, v - i) + (x - i * a) / b);
            }
        }
        return dp[idx][v];
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0