結果
問題 | No.226 0-1パズル |
ユーザー |
|
提出日時 | 2023-10-14 16:47:05 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,308 bytes |
コンパイル時間 | 727 ms |
コンパイル使用メモリ | 75,340 KB |
実行使用メモリ | 8,704 KB |
最終ジャッジ日時 | 2024-09-16 11:05:09 |
合計ジャッジ時間 | 7,239 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 TLE * 1 -- * 17 |
コンパイルメッセージ
main.cpp: In lambda function: main.cpp:36:27: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 36 | for (auto [row, col]: qidxlst) { | ^ main.cpp:42:27: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 42 | for (auto [row, col]: qidxlst) { | ^
ソースコード
// No.226 0-1パズル#include <iostream>#include <vector>#include <string>using namespace std;const int MOD = 1'000'000'007;int main() {int H, W;cin >> H >> W;vector<string> S(H);for (int i = 0; i < H; ++i) cin >> S[i];int res = 0;for (int bit = 0; bit < (1 << W); ++bit) {vector<string> tmp = S;int num = 1;auto check = [&](int i, int j) {int cnt0 = 0, cnt1 = 0, cntq = 0;vector<pair<int, int>> qidxlst;for (int row = i; row <= i + 1; ++row) {for (int col = j; col <= j + 1; ++col) {if (tmp[row][col] - '0' == 0) ++cnt0;if (tmp[row][col] - '0' == 1) ++cnt1;if (tmp[row][col] == '?') {++cntq;qidxlst.push_back(make_pair(row, col));}}}if (cntq > max(cnt0, cnt1)) return true;if (cnt0 < cnt1) {cnt0 += cntq;for (auto [row, col]: qidxlst) {tmp[row][col] = '0';}}if (cnt1 < cnt0) {cnt1 += cntq;for (auto [row, col]: qidxlst) {tmp[row][col] = '1';}}return cnt0 == cnt1;};bool flag = false;for (int j = 0; j < W; ++j) {if (tmp[0][j] == '?') {tmp[0][j] = ((bit >> (W - j - 1)) & 1) + '0';} else {if (((bit >> (W - j - 1)) & 1) != (tmp[0][j] - '0')) {flag = true;break;}}}if (flag) continue;for (int i = 0; i < H - 1; ++i) {for (int j = 0; j < W - 1; ++j) {if (!check(i, j)) {flag = true;break;}}if (flag) break;bool flag2 = true;for (int j = 0; j < W; ++j) {if (tmp[i + 1][j] != '?') flag2 = false;}if (flag2) num = 2;}if (flag) continue;res = (res + num) % MOD;}cout << res << endl;}