Submission #312994

# Submission time Handle Problem Language Result Execution time Memory
312994 2020-10-14T22:41:15 Z anishrajeev Mate (COCI18_mate) Java 11
40 / 100
1353 ms 131072 KB
import java.util.*;
import java.io.*;
public class mate {
    public static void main(String[] args) throws IOException{
        BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
        PrintWriter pw = new PrintWriter(new OutputStreamWriter(System.out));
        String str = bf.readLine();
        int mod = 1000000007;
        char[] array = new char[str.length()];
        int N = array.length;
        for(int i = 0; i < str.length(); i++)array[i] = str.charAt(i);
        int[] s = new int[N];
        for(int i = 0; i < N; i++)s[i] = array[i]-96;

        int [][][][] dp = new int[N][N+1][27][27];
        int[][][][] dpwindow = new int[2][N+1][27][27];
        for(int i = 0; i < N; i++){
            dp[i][1][0][s[i]] = 1;

        }
        dpwindow[1][1][0][s[0]] = 1;
        for(int x = 1; x < N; x++){
            dpwindow[0][1][0][s[x]] = 1;
            for(int length = 1; length <= N; length++){
                for(int i = 0; i <= 26; i++){
                    for(int c = 0; c <= 26; c++){
                        if(c == s[x]){
                            for(int d = 0; d <= 26; d++){
                                /*dp[x][length][i][c] += dp[x-1][length-1][d][i];
                                dp[x][length][i][c] %= mod;*/
                                dpwindow[0][length][i][c] += dpwindow[1][length-1][d][i];
                                dpwindow[0][length][i][c] %= mod;
                            }
                        }
                        dp[x][length][i][c] += dp[x-1][length][i][c];
                        dp[x][length][i][c] %= mod;
                        dpwindow[0][length][i][c] += dpwindow[1][length][i][c];
                        dpwindow[0][length][i][c] %= mod;
                    }
                }
            }
            for(int i = 1; i <= N; i++){
                for(int c = 0; c <= 26; c++){
                    for(int d = 0; d <= 26; d++){
                        dpwindow[1][i][c][d] = dpwindow[0][i][c][d];
                        dpwindow[0][i][c][d] = 0;
                    }
                }
            }
        }
        int Q = Integer.parseInt(bf.readLine());
        for(int i = 0; i < Q; i++){
            StringTokenizer stk = new StringTokenizer(bf.readLine());
            int num = Integer.parseInt(stk.nextToken());
            String[] XY = stk.nextToken().split("");
            int letter1 = XY[0].charAt(0)-96;
            int letter2 = XY[1].charAt(0)-96;
            pw.println(dpwindow[1][num][letter1][letter2]);
        }
        pw.close();
    }
}
# Verdict Execution time Memory Grader output
1 Correct 671 ms 53716 KB Output is correct
2 Correct 617 ms 49136 KB Output is correct
3 Correct 625 ms 51040 KB Output is correct
4 Correct 1107 ms 61524 KB Output is correct
5 Runtime error 1238 ms 131072 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 1035 ms 131072 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 1353 ms 131072 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 1046 ms 131072 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 1232 ms 131072 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 877 ms 131072 KB Execution killed with signal 9 (could be triggered by violating memory limits)