結果

問題 No.663 セルオートマトンの逆操作
ユーザー GrenacheGrenache
提出日時 2018-03-12 18:30:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 1,143 bytes
コンパイル時間 3,304 ms
コンパイル使用メモリ 77,616 KB
実行使用メモリ 44,056 KB
最終ジャッジ日時 2024-11-08 07:31:10
合計ジャッジ時間 8,481 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,380 KB
testcase_01 AC 118 ms
40,004 KB
testcase_02 AC 132 ms
41,072 KB
testcase_03 AC 120 ms
40,228 KB
testcase_04 AC 123 ms
41,432 KB
testcase_05 AC 118 ms
41,008 KB
testcase_06 AC 112 ms
40,396 KB
testcase_07 AC 124 ms
41,144 KB
testcase_08 AC 124 ms
41,424 KB
testcase_09 AC 127 ms
41,388 KB
testcase_10 AC 134 ms
41,104 KB
testcase_11 AC 131 ms
41,108 KB
testcase_12 AC 125 ms
41,240 KB
testcase_13 AC 128 ms
41,472 KB
testcase_14 AC 131 ms
41,352 KB
testcase_15 AC 128 ms
41,132 KB
testcase_16 AC 135 ms
41,184 KB
testcase_17 AC 134 ms
41,220 KB
testcase_18 AC 126 ms
41,172 KB
testcase_19 AC 113 ms
40,096 KB
testcase_20 AC 129 ms
41,568 KB
testcase_21 AC 134 ms
41,728 KB
testcase_22 AC 166 ms
41,864 KB
testcase_23 AC 189 ms
42,804 KB
testcase_24 AC 198 ms
42,960 KB
testcase_25 AC 205 ms
43,592 KB
testcase_26 AC 209 ms
44,056 KB
testcase_27 AC 113 ms
40,148 KB
testcase_28 AC 130 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder663 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final int MOD = 1_000_000_007;

		int n = sc.nextInt();

		int[] e = new int[n];
		for (int i = 0; i < n; i++) {
			e[i] = sc.nextInt();
		}

		int[] mm = {0, 1, 1, 1, 0, 1, 1, 0};

		long ans = 0;
		for (int s = 0; s < 8; s++) {
			long[][] dp = new long[4][n];

			if (mm[s] != e[0]) {
				continue;
			}
			dp[s & 0x3][0] = 1;

			for (int i = 1; i < n; i++) {
				for (int j = 0; j < 8; j++) {
					if (mm[j] != e[i]) {
						continue;
					}

					dp[j & 0x3][i] += dp[j >> 1][i - 1];
					dp[j & 0x3][i] %= MOD;
				}
			}

			for (int i = 0; i < 4; i++) {
				if (i == s >> 1) {
					ans += dp[i][n - 1];
					ans %= MOD;
				}
			}
		}

		pr.println(ans);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0