結果

問題 No.1141 田グリッド
ユーザー yuji9511yuji9511
提出日時 2020-07-31 23:20:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 2,237 bytes
コンパイル時間 2,216 ms
コンパイル使用メモリ 209,344 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-07-06 21:31:52
合計ジャッジ時間 3,961 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 41 ms
8,320 KB
testcase_14 AC 46 ms
11,392 KB
testcase_15 AC 40 ms
6,940 KB
testcase_16 AC 40 ms
6,944 KB
testcase_17 AC 39 ms
7,268 KB
testcase_18 AC 23 ms
6,944 KB
testcase_19 AC 22 ms
6,944 KB
testcase_20 AC 22 ms
6,940 KB
testcase_21 AC 40 ms
6,940 KB
testcase_22 AC 40 ms
6,944 KB
testcase_23 AC 40 ms
6,944 KB
testcase_24 AC 22 ms
6,944 KB
testcase_25 AC 24 ms
6,940 KB
testcase_26 AC 22 ms
7,016 KB
testcase_27 AC 24 ms
6,940 KB
testcase_28 AC 22 ms
6,944 KB
testcase_29 AC 23 ms
7,144 KB
testcase_30 AC 23 ms
6,944 KB
testcase_31 AC 23 ms
6,944 KB
testcase_32 AC 23 ms
6,940 KB
testcase_33 AC 22 ms
7,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*** author: yuji9511 ***/
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using lpair = pair<ll, ll>;
const ll MOD = 1e9+7;
const ll INF = 1e18;
#define rep(i,m,n) for(ll i=(m);i<(n);i++)
#define rrep(i,m,n) for(ll i=(m);i>=(n);i--)
#define printa(x,n) for(ll i=0;i<n;i++){cout<<(x[i])<<" \n"[i==n-1];};
void print() {}
template <class H,class... T>
void print(H&& h, T&&... t){cout<<h<<" \n"[sizeof...(t)==0];print(forward<T>(t)...);}
    ll power(ll x, ll n){
        if(n == 0) return 1LL;
        ll res = power(x * x % MOD, n/2);
        if(n % 2 == 1) res = res * x % MOD;
        return res;
    }

void solve(){
    ll H,W;
    cin >> H >> W;
    vector< vector<ll> > A(H+1, vector<ll>(W+1));
    rep(i,0,H){
        rep(j,0,W){
            cin >> A[i][j];
        }
    }
    ll mul = 1;
    rep(i,0,H){
        rep(j,0,W){
            if(A[i][j] != 0){
                mul *= A[i][j];
                mul %= MOD;
            }
        }
    }
    ll tate[100010], yoko[100010];
    rep(i,0,H){
        ll res = 1;
        rep(j,0,W){
            if(A[i][j] != 0){
                res *= A[i][j];
                res %= MOD;
            }
        }
        tate[i] = res;
    }
    rep(j,0,W){
        ll res = 1;
        rep(i,0,H){
            if(A[i][j] != 0){
                res *= A[i][j];
                res %= MOD;
            }
        }
        yoko[j] = res;
    }
    vector< vector<ll> > sum(H+2, vector<ll>(W+2, 0));
    ll n1[100010] = {}, n2[100010] = {};
    ll zero_cnt = 0;
    rep(i,0,H){
        rep(j,0,W){
            if(A[i][j] == 0){
                n1[i]++;
                n2[j]++;
                zero_cnt++;
            }
        }
    }

    ll Q;
    cin >> Q;
    while(Q--){
        ll r,c;
        cin >> r >> c;
        r--; c--;
        ll num = n1[r] + n2[c];
        if(A[r][c] == 0) num--;
        if(num != zero_cnt){
            print(0);
        }else{
            ll ans = mul * power(tate[r], MOD-2) % MOD * power(yoko[c], MOD-2) % MOD;
            if(A[r][c] != 0){
                ans *= A[r][c];
                ans %= MOD;
            }
            print(ans);
        }

    }


}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
}
0