結果

問題 No.1141 田グリッド
ユーザー uchiiiiuchiiii
提出日時 2020-08-01 00:57:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 2,903 bytes
コンパイル時間 3,339 ms
コンパイル使用メモリ 224,772 KB
実行使用メモリ 6,520 KB
最終ジャッジ日時 2023-09-21 04:41:22
合計ジャッジ時間 6,114 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 3 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 3 ms
4,380 KB
testcase_11 AC 3 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 50 ms
4,460 KB
testcase_14 AC 57 ms
6,520 KB
testcase_15 AC 48 ms
4,376 KB
testcase_16 AC 49 ms
4,484 KB
testcase_17 AC 49 ms
4,376 KB
testcase_18 AC 26 ms
4,376 KB
testcase_19 AC 26 ms
4,376 KB
testcase_20 AC 26 ms
4,376 KB
testcase_21 AC 49 ms
4,380 KB
testcase_22 AC 49 ms
4,380 KB
testcase_23 AC 49 ms
4,376 KB
testcase_24 AC 26 ms
4,380 KB
testcase_25 AC 27 ms
4,376 KB
testcase_26 AC 26 ms
4,380 KB
testcase_27 AC 26 ms
4,380 KB
testcase_28 AC 27 ms
4,376 KB
testcase_29 AC 27 ms
4,376 KB
testcase_30 AC 26 ms
4,380 KB
testcase_31 AC 27 ms
4,380 KB
testcase_32 AC 26 ms
4,376 KB
testcase_33 AC 27 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma region
#pragma GCC target("avx2")
#pragma GCC optimize("03")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std; typedef long double ld; typedef long long ll;
typedef unsigned long long ull;
#define endl "\n"
#define FOR(i,a,b) for(int i=(a);i<=(b);i++)
#define rep(i,n) for(int i=0;i<(n);i++)
#define PII pair<int, int>
#define PLL pair<ll, ll>
#define ALL(x) (x).begin(), (x).end()
constexpr int INF=1<<30; constexpr ll LINF=1LL<<60; constexpr ll mod=1e9+7; constexpr int NIL = -1;
template<class T>inline bool chmax(T &a, const T &b) { if (a<b) { a = b; return 1; } return 0; }
template<class T>inline bool chmin(T &a, const T &b) { if (b<a) { a = b; return 1; } return 0; }
#pragma endregion
//-------------------
struct mint {
	ll x;
	mint(ll x=0):x(x%mod){}

	bool operator==(const mint a)const{return x==a.x;}
	bool operator!=(const mint a)const{return x!=a.x;}
	bool operator>=(const mint a){return (x >= a.x)? 1: 0;}
	bool operator<(const mint a){return !(*this>=a);}
	bool operator>(const mint a){return (x > a.x)? 1:0;}
	bool operator<=(const mint a){return !(*this>a);}
	mint& operator+=(const mint a) {
		if ((x += a.x) >= mod) x -= mod;
			return *this;
	}
	mint& operator-=(const mint a) {
		if ((x += mod-a.x) >= mod) x -= mod;
			return *this;
	}
	mint& operator*=(const mint a) {
		(x *= a.x) %= mod;
		return *this;
	}
	mint& operator/=(const mint a) {
		return (*this) *= a.inv();
	}
	mint operator+(const mint a) const {
		mint res(*this);
		return res+=a;
	}
	mint operator-(const mint a) const {
		mint res(*this);
		return res-=a;
	}
	mint operator*(const mint a) const {
		mint res(*this);
		return res*=a;
	}
	mint operator/(const mint a) const {
		mint res(*this);
		return res/=a;
	}
	mint pow(ll t) const {
		if (!t) return 1;
		mint a = pow(t>>1);
		a *= a;  //2 square
		if (t&1) a *= *this; 
		return a;
	}
	// for prime mod
	mint inv() const {
		return pow(mod-2);
	}
};


int main(){
    cin.tie(0); ios::sync_with_stdio(false); //cout << fixed << setprecision(15);

    int h,w; cin >> h >> w;
    vector<vector<ll>> A(h, vector<ll>(w,1));
    vector<mint> H(h,1);
    vector<mint> W(w,1);
    vector<int> Hz(h,0);
    vector<int> Wz(w,0);
    mint ans = mint(1);
    int zeros = 0;
    rep(i,h) {
        rep(j,w) {
            cin >> A[i][j];
            if(A[i][j] != 0) {
                H[i] *= A[i][j];
                W[j] *= A[i][j];
                ans *= A[i][j];
            } else {
                zeros++;
                Hz[i]++;
                Wz[j]++;
            }
        }
    }

    int Q; cin >> Q;
    while(Q--) {
        int r,c; cin >> r >> c; r--; c--;
        int cnt = Hz[r] + Wz[c] - (A[r][c]==0LL? 1: 0);
        if(zeros != cnt) cout << 0 << endl;
        else {
            mint cur = ans / H[r]/W[c] * (A[r][c] != 0?mint(A[r][c]):mint(1));
        cout << cur.x << endl;}
    }
    return 0;
}
0