forked from ravipatel447/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinaraySub.java
129 lines (119 loc) · 3.8 KB
/
BinaraySub.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import java.util.*;
import java.lang.*;
import java.io.*;
class BinarySub {
public static void main(String[] args) throws java.lang.Exception {
try {
FastReader sc = new FastReader();
PrintWriter pw = new PrintWriter(System.out);
int t = sc.nextInt();
while (t-- != 0) {
String s = sc.nextLine();
int dp[] = new int[s.length() + 1];
Arrays.fill(dp, -1);
int ans = posiblity(s, s.length(), 0, dp);
pw.println(ans);
}
pw.flush();
} catch (Exception e) {
System.out.println(e);
return;
}
}
static int posiblity(String s, int n, int i, int dp[]) {
if (i >= n - 2) {
if (i == n - 2) {
if (s.charAt(i) == 'a') {
if (s.charAt(i + 1) == 'b') {
return dp[i] = 2;
} else {
return dp[i] = 1;
}
} else {
if (s.charAt(i + 1) == 'a') {
return dp[i] = 2;
} else {
return dp[i] = 1;
}
}
} else if (i == n - 1) {
if (s.charAt(i) == 'a') {
return dp[i] = 1;
} else {
return dp[i] = 1;
}
}
return dp[i] = 0;
} else {
if (s.charAt(i) == 'a') {
if (s.charAt(i + 1) == 'b') {
{
if (dp[i] == -1) {
return dp[i] = ((posiblity(s, n, i + 2, dp)%998244353) + (posiblity(s, n, i + 1, dp)%998244353))%998244353;
} else {
return dp[i];
}
}
} else {
if (dp[i] == -1) {
return dp[i] = (posiblity(s, n, i + 1, dp)%998244353);
} else {
return dp[i];
}
}
} else {
if (s.charAt(i + 1) == 'a') {
{
if (dp[i] == -1) {
return dp[i] = ((posiblity(s, n, i + 2, dp)%998244353) + (posiblity(s, n, i + 1, dp)%998244353))%998244353;
} else {
return dp[i];
}
}
} else {
if (dp[i] == -1) {
return dp[i] = posiblity(s, n, i + 1, dp)%998244353;
} else {
return dp[i];
}
}
}
}
}
static class FastReader {
BufferedReader br;
StringTokenizer st;
public FastReader() {
br = new BufferedReader(
new InputStreamReader(System.in));
}
String next() {
while (st == null || !st.hasMoreElements()) {
try {
st = new StringTokenizer(br.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
return st.nextToken();
}
int nextInt() {
return Integer.parseInt(next());
}
long nextLong() {
return Long.parseLong(next());
}
double nextDouble() {
return Double.parseDouble(next());
}
String nextLine() {
String str = "";
try {
str = br.readLine();
} catch (IOException e) {
e.printStackTrace();
}
return str;
}
}
}