結果
問題 | No.1141 田グリッド |
ユーザー | どらら |
提出日時 | 2020-08-01 00:58:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,392 bytes |
コンパイル時間 | 1,753 ms |
コンパイル使用メモリ | 176,948 KB |
実行使用メモリ | 37,428 KB |
最終ジャッジ日時 | 2024-07-06 23:18:06 |
合計ジャッジ時間 | 10,264 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
34,416 KB |
testcase_01 | AC | 30 ms
34,560 KB |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | AC | 29 ms
34,432 KB |
testcase_05 | AC | 29 ms
34,432 KB |
testcase_06 | AC | 30 ms
34,432 KB |
testcase_07 | AC | 29 ms
34,412 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 145 ms
34,856 KB |
testcase_19 | AC | 151 ms
34,932 KB |
testcase_20 | AC | 149 ms
35,012 KB |
testcase_21 | AC | 173 ms
34,864 KB |
testcase_22 | AC | 171 ms
34,836 KB |
testcase_23 | AC | 169 ms
34,816 KB |
testcase_24 | WA | - |
testcase_25 | RE | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:174:18: warning: 'xx' may be used uninitialized [-Wmaybe-uninitialized] 174 | if(r == yy && c == xx){ | ~~~~~~~~^~~~~~~~~~ main.cpp:151:9: note: 'xx' was declared here 151 | int xx, yy; | ^~ main.cpp:174:7: warning: 'yy' may be used uninitialized [-Wmaybe-uninitialized] 174 | if(r == yy && c == xx){ | ^~ main.cpp:151:13: note: 'yy' was declared here 151 | int xx, yy; | ^~
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; static const long long mod = 1000000007; struct mint { long long x; mint(ll x = 0):x(x%mod) {} mint& operator+=(const mint a) { (x += a.x) %= mod; return *this; } mint& operator-=(const mint a) { (x += mod-a.x) %= mod; return *this; } mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this; } mint operator+(const mint a) const { mint ret(*this); return ret += a; } mint operator-(const mint a) const { mint ret(*this); return ret -= a; } mint operator*(const mint a) const { mint ret(*this); return ret *= a; } mint pow(ll t) const { if(t==0) return mint(1); mint a = pow(t>>1); a *= a; if(t&1) a *= *this; return a; } //for prime mod mint inv() const { return pow(mod-2); } mint& operator/=(const mint a) { return (*this) *= a.inv(); } mint operator/(const mint a) const { mint ret(*this); return ret /= a; } }; ostream &operator<<(ostream& os, const mint& x) { os << x.x; return os; } class modutils { vector<mint> fact, invfact; public: modutils(int n = 2000005):fact(n+1),invfact(n+1) { fact[0] = 1; for(int i=1; i<=n; i++) fact[i] = fact[i-1] * i; invfact[n] = fact[n].inv(); for(int i=n; i>=1; i--) invfact[i-1] = invfact[i] * i; } mint pow(mint x, ll n) { return x.pow(n); } mint comb(ll n, ll k) { if(n<0 || k<0 || n<k) return 0; return fact[n] * invfact[k] * invfact[n-k]; } mint perm(ll n, ll k) { if(n<0 || k<0 || n<k) return 0; return fact[n] * invfact[n-k]; } mint fac(ll n) { return fact[n]; } }; modutils mutil; int main(){ int H, W; cin >> H >> W; vector<vector<int>> v(H, vector<int>(W)); mint all(1); rep(i,H){ rep(j,W){ cin >> v[i][j]; all *= v[i][j]; } } vector<mint> vh(H), vw(W); int zh = 0, zw = 0; rep(i,H){ mint tmp(1); bool z = false; rep(j,W){ tmp *= v[i][j]; if(v[i][j] == 0) z = true; } vh[i] = tmp; if(z) zh++; } rep(i,W){ mint tmp(1); bool z = false; rep(j,H){ tmp *= v[j][i]; if(v[i][j] == 0) z = true; } vw[i] = tmp; if(z) zw++; } if(zh >= 2 || zw >= 2){ int Q; cin >> Q; rep(i,Q){ int r, c; cin >> r >> c; cout << 0 << endl; } } else if(zh == 0){ int Q; cin >> Q; rep(i,Q){ int r, c; cin >> r >> c; r--; c--; mint ret = all; ret *= vh[r].inv(); ret *= vw[c].inv(); ret *= v[r][c]; cout << ret << endl; } } else{ int xx, yy; rep(i,H){ rep(j,W){ if(v[i][j] == 0){ yy = i; xx = j; } } } all = mint(1); rep(i,H){ rep(j,W){ if(i == yy || j == xx) continue; all *= v[i][j]; } } int Q; cin >> Q; rep(i,Q){ int r, c; cin >> r >> c; r--; c--; if(r == yy && c == xx){ cout << all << endl; }else{ cout << 0 << endl; } } } return 0; }