結果
問題 | No.226 0-1パズル |
ユーザー | bachoppi |
提出日時 | 2021-02-03 11:52:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 2,620 bytes |
コンパイル時間 | 1,195 ms |
コンパイル使用メモリ | 121,616 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-26 14:26:43 |
合計ジャッジ時間 | 1,918 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
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 | AC | 2 ms
5,376 KB |
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 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int modpow(ll, ll, ll)': main.cpp:58:1: warning: control reaches end of non-void function [-Wreturn-type] 58 | } | ^
ソースコード
#include<iostream> #include<string> #include<cstring> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<stack> #include<map> #include<set> #include<bitset> #include<functional> #include<assert.h> #include<numeric> using namespace std; #define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) using ll = long long; const int inf=1e9+7; const ll longinf=1LL<<60 ; const ll mod=1e9+7 ; #define PI 3.141592653589793 const int MAX = 1000000; const int MOD = 998244353; long long fac[MAX], finv[MAX], inv[MAX]; // テーブルを作る前処理 void COMinit() { fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for (int i = 2; i < MAX; i++){ fac[i] = fac[i - 1] * i % MOD; inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD; finv[i] = finv[i - 1] * inv[i] % MOD; } } // 二項係数計算 long long COM(int n, int k){ if (n < k) return 0; if (n < 0 || k < 0) return 0; return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD; } int modpow(ll a, ll n, ll p){ if(n==0) return 1; if(n%2) return (a*modpow(a, n-1, p))%p; if(!(n%2)){ ll t=modpow(a, n/2, p); return (t*t)%p; } } int main(){ int h, w; cin >> h >> w; string s[h]; rep(i, h){ cin >> s[i]; } ll ansa = 1; rep(i, h){ bool gu = false, ki = false; int cnt = 0; rep(j, w){ if(s[i][j]=='1' && j%2) ki = true; else if(s[i][j]=='1' && j%2==0) gu = true; else if(s[i][j]=='0' && j%2==0) ki = true; else if(s[i][j]=='0' && j%2) gu = true; } //cout << ki << " " << gu << " " << i << endl; if(ki&&gu){ ansa = 0; break; } if(!ki && !gu) ansa*=2; ansa%=mod; } ll ansb = 1; rep(j, w){ bool gu = false, ki = false; int cnt = 0; rep(i, h){ if(s[i][j]=='1' && i%2) ki = true; else if(s[i][j]=='1' && i%2==0) gu = true; else if(s[i][j]=='0' && i%2==0) ki = true; else if(s[i][j]=='0' && i%2) gu = true; } if(ki&&gu){ ansb = 0; break; } if(!ki && !gu){ ansb*=2; //cout << j << endl; } ansb%=mod; } char checka[h][w], checkb[h][w]; bool a = true, b = true; //cout << ansa << " " << ansb << endl; rep(i, h){ rep(j, w){ if((i+j)%2==0){ checka[i][j] = '0'; checkb[i][j] = '1'; } else{ checka[i][j] = '1'; checkb[i][j] = '0'; } if(checka[i][j]!=s[i][j] && s[i][j]!='?') a = false; if(checkb[i][j]!=s[i][j] && s[i][j]!='?') b = false; } } cout << ((ansa+ansb)%mod-a-b+mod)%mod << endl; }