結果
問題 | No.460 裏表ちわーわ |
ユーザー | horizon4096 |
提出日時 | 2018-01-11 13:29:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 1,872 bytes |
コンパイル時間 | 740 ms |
コンパイル使用メモリ | 72,948 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 05:32:16 |
合計ジャッジ時間 | 2,241 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
5,248 KB |
testcase_01 | AC | 10 ms
5,376 KB |
testcase_02 | AC | 23 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 34 ms
5,376 KB |
testcase_06 | AC | 34 ms
5,376 KB |
testcase_07 | AC | 34 ms
5,376 KB |
testcase_08 | AC | 33 ms
5,376 KB |
testcase_09 | AC | 14 ms
5,376 KB |
testcase_10 | AC | 33 ms
5,376 KB |
testcase_11 | AC | 36 ms
5,376 KB |
testcase_12 | AC | 36 ms
5,376 KB |
testcase_13 | AC | 34 ms
5,376 KB |
testcase_14 | AC | 34 ms
5,376 KB |
testcase_15 | AC | 35 ms
5,376 KB |
testcase_16 | AC | 35 ms
5,376 KB |
testcase_17 | AC | 35 ms
5,376 KB |
testcase_18 | AC | 35 ms
5,376 KB |
testcase_19 | AC | 34 ms
5,376 KB |
testcase_20 | AC | 32 ms
5,376 KB |
testcase_21 | AC | 32 ms
5,376 KB |
testcase_22 | AC | 33 ms
5,376 KB |
testcase_23 | AC | 32 ms
5,376 KB |
testcase_24 | AC | 36 ms
5,376 KB |
testcase_25 | AC | 6 ms
5,376 KB |
testcase_26 | AC | 5 ms
5,376 KB |
testcase_27 | AC | 7 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’: main.cpp:46:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 46 | scanf("%d%d", &M, &N); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:49:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 49 | scanf("%d", &a[i][j]); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> #include <iostream> #include <vector> #include <deque> #include <queue> #include <stack> #include <map> #include <string> #include <algorithm> #include <numeric> #include <utility> #include <cmath> using namespace std; typedef long long ll; typedef unsigned int uint; typedef unsigned long long ull; typedef pair<int, int> pii; typedef pair<ll, int> pli; const int iinf = 1 << 29; const long long linf = 1ll << 61; #define dump(x) cerr << #x << " : " << x << '\n' #define MOD(x, y) (((y) + (x) % (y)) % (y)) int M, N; int a[8][8]; int b[8][8]; void flip(int y, int x) { int dx[] = { 0, 1, 1, 0, -1, -1, -1, 0, 1 }; int dy[] = { 0, 0, 1, 1, 1, 0, -1, -1, -1 }; for (int i = 0; i < 9; i++) { int X = x + dx[i]; int Y = y + dy[i]; if (X < 0 || X >= N || Y < 0 || Y >= M) continue; b[Y][X] = 1 - b[Y][X]; } } int main(int argc, char* argv[]) { scanf("%d%d", &M, &N); for (int i = 0; i < M; i++) { for (int j = 0; j < N; j++) { scanf("%d", &a[i][j]); } } int ans = iinf; for (int i = 0; i < (1 << 8); i++) { for (int j = 0; j < (1 << 8); j++) { int count = 0; if ((i & 1) != (j & 1)) continue; memcpy(b, a, sizeof(a)); for (int x = 0; x < N; x++) { if ((i >> x) & 1) { flip(0, x); count++; } } for (int y = 1; y < M; y++) { if ((j >> y) & 1) { flip(y, 0); count++; } } for (int y = 1; y < M; y++) { for (int x = 1; x < N; x++) { if (b[y - 1][x - 1] == 1) { flip(y, x); count++; } } } bool flag = true; for (int x = 0; x < N; x++) { if (b[M - 1][x] == 1) flag = false; } for (int y = 0; y < M; y++) { if (b[y][N - 1] == 1) flag = false; } if (flag) { ans = min(ans, count); } } } if (ans <= M * N) { printf("%d\n", ans); } else { printf("Impossible\n"); } return 0; }