-
Notifications
You must be signed in to change notification settings - Fork 34
/
D.java
69 lines (63 loc) · 2.49 KB
/
D.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
import java.io.PrintStream;
import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
/**
* APAC 2016 Round B Problem D: Albocede DNA
* Check README.md for explanation.
*/
public class Main {
private String solve(Scanner scanner) {
String s=scanner.next();
int len=s.length();
long mod=1000000007;
long[][][][] dp=new long[len+1][len/2+3][len/2+3][2];
dp[0][0][0][0]=1;
for (int i=1;i<=len;i++) { // current chracter
for (int j=0;j<=len/2;j++) { // number of a
for (int k=0;k<=len/2;k++) { // number of b
for (int l=0;l<2;l++) { // whether to deal with c/d
if (s.charAt(i-1)=='a') {
if (k==0) {
dp[i][j+1][k][0]+=dp[i-1][j][k][l];
dp[i][j+1][k][0]%=mod;
}
}
if (s.charAt(i-1)=='b') {
if (j!=0 && l==0) {
dp[i][j][k+1][0]+=dp[i-1][j][k][l];
dp[i][j][k+1][0]%=mod;
}
}
if (s.charAt(i-1)=='c') {
if (j!=0 && k!=0) {
dp[i][j-1][k][1]+=dp[i-1][j][k][l];
dp[i][j-1][k][1]%=mod;
}
}
if (s.charAt(i-1)=='d') {
if (j==0 && k!=0 && l!=0) {
dp[i][j][k-1][1]+=dp[i-1][j][k][l];
dp[i][j][k-1][1]%=mod;
}
}
dp[i][j][k][l]+=dp[i-1][j][k][l];
dp[i][j][k][l]%=mod;
}
}
}
}
return String.valueOf(dp[len][0][0][1]);
}
public static void main(String[] args) throws Exception {
System.setOut(new PrintStream("output.txt"));
Scanner scanner=new Scanner(System.in);
int times=scanner.nextInt();
long start=System.currentTimeMillis();
for (int t=1;t<=times;t++) {
System.out.println(String.format("Case #%d: %s", t, new Main().solve(scanner)));
}
long end=System.currentTimeMillis();
System.err.println(String.format("Time used: %.3fs", (end-start)/1000.0));
}
}