結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー tentententen
提出日時 2023-02-09 13:56:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 3,291 bytes
コンパイル時間 2,726 ms
コンパイル使用メモリ 92,028 KB
実行使用メモリ 366,368 KB
最終ジャッジ日時 2024-07-06 17:13:38
合計ジャッジ時間 10,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,160 KB
testcase_01 AC 52 ms
36,844 KB
testcase_02 AC 52 ms
37,120 KB
testcase_03 AC 52 ms
36,984 KB
testcase_04 AC 52 ms
37,308 KB
testcase_05 AC 1,172 ms
39,620 KB
testcase_06 AC 71 ms
37,828 KB
testcase_07 TLE -
testcase_08 AC 3,321 ms
247,980 KB
testcase_09 TLE -
testcase_10 AC 59 ms
50,764 KB
testcase_11 AC 59 ms
50,200 KB
testcase_12 AC 59 ms
50,568 KB
testcase_13 AC 58 ms
50,696 KB
testcase_14 AC 56 ms
50,432 KB
testcase_15 AC 1,892 ms
65,812 KB
testcase_16 AC 667 ms
117,028 KB
testcase_17 AC 374 ms
77,476 KB
testcase_18 AC 3,447 ms
236,700 KB
testcase_19 AC 151 ms
57,588 KB
testcase_20 AC 2,799 ms
142,492 KB
testcase_21 AC 55 ms
50,592 KB
testcase_22 AC 200 ms
58,204 KB
testcase_23 AC 104 ms
52,532 KB
testcase_24 AC 103 ms
52,608 KB
testcase_25 AC 89 ms
51,920 KB
testcase_26 AC 117 ms
57,020 KB
testcase_27 AC 171 ms
54,528 KB
testcase_28 AC 106 ms
52,344 KB
testcase_29 AC 149 ms
59,644 KB
testcase_30 AC 153 ms
58,364 KB
testcase_31 AC 57 ms
50,576 KB
権限があれば一括ダウンロードができます

ソースコード

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