結果
問題 | No.226 0-1パズル |
ユーザー | pekempey |
提出日時 | 2019-03-20 18:32:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,605 bytes |
コンパイル時間 | 736 ms |
コンパイル使用メモリ | 73,728 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 00:47:08 |
合計ジャッジ時間 | 1,705 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 4 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <string> using namespace std; #define REP(i, n) for (int i = 0; i < (n); i++) const int MOD = 1e9 + 7; struct mint { int n; mint(int n_ = 0) : n(n_) {} }; mint operator+(mint a, mint b) { a.n += b.n; if (a.n >= MOD) a.n -= MOD; return a; } mint operator-(mint a, mint b) { a.n -= b.n; if (a.n < 0) a.n += MOD; return a; } mint operator*(mint a, mint b) { return (long long)a.n * b.n % MOD; } mint &operator+=(mint &a, mint b) { return a = a + b; } mint &operator-=(mint &a, mint b) { return a = a - b; } mint &operator*=(mint &a, mint b) { return a = a * b; } mint mpow(mint a, int b) { mint ans = 1; REP(i, b) ans *= a; return ans; } int main() { int H, W; cin >> H >> W; vector<string> S(H); REP(i, H) cin >> S[i]; mint ans = 1; REP(i, H) { int x = 1; int y = 1; REP(j, W) { if (S[i][j] == '?') continue; x &= S[i][j] - '0' == (j + 0) % 2; y &= S[i][j] - '0' == (j + 1) % 2; } ans *= x + y; } bool can = true; REP(i, H) REP(j, W) REP(k, H) { if (S[k][j] == '?' || S[i][j] == '?') continue; if ((S[k][j] + S[i][j] + k + i) % 2 != 0) { can = false; } } if (can) { int c = 0; REP(j, W) { bool all = true; REP(i, H) all &= S[i][j] == '?'; c += all; } ans += mpow(2, c); int x = 1; int y = 1; REP(i, H) REP(j, H) { if (S[i][j] == '?') continue; x &= S[i][j] - '0' == (i + j + 0) % 2; y &= S[i][j] - '0' == (i + j + 1) % 2; } ans -= x + y; } cout << ans.n << '\n'; }