結果
問題 | No.460 裏表ちわーわ |
ユーザー | hirokazu1020 |
提出日時 | 2016-12-11 00:43:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,929 bytes |
コンパイル時間 | 1,151 ms |
コンパイル使用メモリ | 106,152 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-29 02:41:06 |
合計ジャッジ時間 | 3,105 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 1 ms
5,248 KB |
testcase_26 | AC | 1 ms
5,248 KB |
testcase_27 | WA | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include<sstream> #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<climits> #include<cmath> #include<string> #include<vector> #include<set> #include<map> #include<queue> #include<numeric> #include<functional> #include<algorithm> #include<bitset> #include<tuple> #include<unordered_set> #include<unordered_map> #include<random> using namespace std; #define INF (1<<29) #define rep(i,n) for(int i=0;i<(int)(n);i++) #define all(v) v.begin(),v.end() #define uniq(v) v.erase(unique(all(v)),v.end()) int n, m; int b[8][8]; vector<int> GaussJordanMod2(vector<vector<int> > a) { int n = a.size(); for (int i = 0; i<n; i++) { for (int j = i; j<n; j++) { if (a[j][i]) { a[i].swap(a[j]); break; } } vector<int> invalid(n); invalid.push_back(1); if (a[i] == invalid)return vector<int>(); for (int j = 0; j<n; j++) { if (i == j || a[j][i] == 0)continue; for (int k = i; k<n + 1; k++) { a[j][k] = (a[j][k] - a[i][k] + 2) % 2; } } } vector<int> res(n); for (int i = 0; i<n; i++)res[i] = a[i][n]; return res; } int main() { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> m; rep(i,n) { rep(j, m) { cin >> b[i][j]; } } int dy[] = { 0,-1,0,1,0 ,1,1,-1,-1}; int dx[] = { 0,0,-1,0,1 ,1,-1,1,-1}; vector<vector<int>> v; rep(i, n) { rep(j, m) { v.emplace_back(n*m + 1); rep(k,9) { int y = i + dy[k]; int x = j + dx[k]; if (0<=x&&x<m && 0<=y&&y<n) { v.back()[y*m + x] = 1; } } v.back()[n*m] = b[i][j]; } } auto res = GaussJordanMod2(v); rep(i, n) { rep(j, m) if(res[i*m+j]){ rep(k, 9) { int y = i + dy[k]; int x = j + dx[k]; if (0 <= x&&x<m && 0 <= y&&y<n) { b[y][x] ^= 1; } } } } bool ok = true; rep(i, n) rep(j, m)if (b[i][j] == 1)ok = false; if (!ok)cout << "Impossible" << endl; else cout << count(all(res), 1) << endl; return 0; }