結果
問題 | No.663 セルオートマトンの逆操作 |
ユーザー | tnakao0123 |
提出日時 | 2018-03-10 02:24:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,437 bytes |
コンパイル時間 | 643 ms |
コンパイル使用メモリ | 85,532 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-11 06:05:47 |
合計ジャッジ時間 | 1,544 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 1 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 1 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 1 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,820 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,820 KB |
testcase_27 | AC | 2 ms
6,820 KB |
testcase_28 | AC | 1 ms
6,820 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:56:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 56 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:57:36: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 57 | for (int i = 0; i < n; i++) scanf("%d", &es[i]); | ~~~~~^~~~~~~~~~~~~~
ソースコード
/* -*- coding: utf-8 -*- * * 663.cc: No.663 セルオートマトンの逆操作 - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 2000; const long long MOD = 1000000007; const bool rls[4][4][2] = { {{1, 0}, {0, 1}, {0, 0}, {0, 0}}, // 000, 001, ---, --- {{0, 0}, {0, 0}, {0, 1}, {0, 1}}, // ---, ---, 010, 011 {{1, 0}, {0, 1}, {0, 0}, {0, 0}}, // 100, 101, ---, --- {{0, 0}, {0, 0}, {0, 1}, {1, 0}}, // ---, ---, 110, 111 }; /* typedef */ typedef long long ll; /* global variables */ int es[MAX_N]; ll dp[MAX_N + 1][4][4]; /* subroutines */ inline void addmod(ll &a, ll b) { a = (a + b) % MOD; } /* main */ int main() { int n; scanf("%d", &n); for (int i = 0; i < n; i++) scanf("%d", &es[i]); for (int k = 0; k < 4; k++) dp[0][k][k] = 1; for (int i = 0; i < n; i++) for (int j = 0; j < 4; j++) for (int k = 0; k < 4; k++) if (dp[i][j][k] > 0) for (int l = 0; l < 4; l++) if (rls[k][l][es[i]]) addmod(dp[i + 1][j][l], dp[i][j][k]); ll sum = 0; for (int k = 0; k < 4; k++) addmod(sum, dp[n][k][k]); printf("%lld\n", sum); return 0; }