結果
問題 | No.460 裏表ちわーわ |
ユーザー | yuppe19 😺 |
提出日時 | 2016-12-11 22:27:38 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,894 bytes |
コンパイル時間 | 1,549 ms |
コンパイル使用メモリ | 168,408 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-29 04:05:10 |
合計ジャッジ時間 | 2,479 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 1 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:97:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 97 | int R, C; scanf("%d%d", &R, &C); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:103:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 103 | scanf("%d", &b[r*C+c]); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<n; ++i) constexpr int INF = 987654321; int modNorm(int a, int m) { return (a%m+m)%m; } // ax+by=gcd(a,b) int extgcd(int a, int b, int &x, int &y) { int g = a; x = 1; y = 0; if (b) { g = extgcd(b, a%b, y, x); y -= (a/b) * x; } return g; } int invMod(int a, int p) { int x, y; if (extgcd(a,p,x,y) == 1) return (x+p)%p; return 0; } typedef vector<int> vec; typedef vector<vec> mat; int modGaussElimination(const mat &A, const vec &b, int m, vec &res) { int n = A.size(); mat B(n, vec(n+1)); REP(i,n) REP(j,n) B[i][j] = A[i][j]; REP(i, n) B[i][n] = b[i]; int nowy = 0; REP(x, n) { int pivot = -1; for (int j=nowy; j<n; ++j) if (B[j][x]) { pivot = j;break; } if (pivot == -1) continue; swap(B[nowy], B[pivot]); for (int j=nowy+1; j<n; ++j) { int t = B[j][x] * invMod(B[nowy][x], m) % m; if (t) for (int k=x; k<=n; ++k) B[j][k] = modNorm(B[j][k] - B[nowy][k] * t, m); } nowy++; } res.clear(); for (int y=nowy; y<n; ++y) if (B[y][n]) // rank(A) != rank(A|b) return 0; if (nowy != n) { // rank(A) == rank(A|b) != n // 解が一意でない。ひとつ求める res = vec(n,INF); // INFは任意を表す for (int y=n-1; y>=0; --y) { int x; for (x=y; x<n; ++x) { if (B[y][x]) break; } if (x==n) continue; int sum = B[y][n]; for (int i=x+1; i<n; ++i) { if (res[i] == INF) res[i] = 0; // この時点でres[i]が決まってなかったら0とする sum = modNorm(sum - res[i] * B[y][i], m); } res[x] = sum * invMod(B[y][x], m) % m; } REP(i, n) if (res[i]==INF) res[i] = 0; return 2; } // 解が一意に決まる。普通に後退代入 res.resize(n); for (int x=n-1; x>=0; --x) { int sum = B[x][n]; for (int i=n-1; i>x; --i) { sum = modNorm(sum - res[i] * B[x][i], m); } res[x] = sum * invMod(B[x][x], m) % m; } return 1; } int main(void) { int R, C; scanf("%d%d", &R, &C); int n = R * C; vec b(n); mat G(R, vec(C)); for(int r=0; r<R; ++r) { for(int c=0; c<C; ++c) { scanf("%d", &b[r*C+c]); } } mat A(n, vec(n)); for(int r=0; r<R; ++r) { for(int c=0; c<C; ++c) { for(int dr=-1; dr<=1; ++dr) { for(int dc=-1; dc<=1; ++dc) { int nr = r + dr, nc = c + dc; if(!(0 <= nr && nr < R && 0 <= nc && nc < C)) { continue; } A[r*C+c][nr*C+nc] = 1; } } } } vec res(n); int out = modGaussElimination(A, b, 2, res); if(!out) { puts("Impossible"); return 0; } int cnt = 0; for(int i=0; i<n; ++i) { if(res[i]) { ++cnt; } } printf("%d\n", cnt); return 0; }