結果

問題 No.1141 田グリッド
ユーザー HaaHaa
提出日時 2020-07-31 22:21:50
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,128 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 171,716 KB
実行使用メモリ 6,604 KB
最終ジャッジ日時 2023-09-20 23:57:51
合計ジャッジ時間 6,242 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 4 ms
4,376 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 AC 4 ms
4,376 KB
testcase_11 AC 5 ms
4,376 KB
testcase_12 AC 4 ms
4,380 KB
testcase_13 AC 162 ms
4,548 KB
testcase_14 AC 169 ms
6,604 KB
testcase_15 AC 160 ms
4,380 KB
testcase_16 AC 158 ms
4,376 KB
testcase_17 AC 159 ms
4,376 KB
testcase_18 AC 127 ms
4,380 KB
testcase_19 AC 125 ms
4,376 KB
testcase_20 AC 124 ms
4,380 KB
testcase_21 AC 153 ms
4,380 KB
testcase_22 AC 152 ms
4,380 KB
testcase_23 AC 153 ms
4,432 KB
testcase_24 AC 124 ms
4,376 KB
testcase_25 AC 126 ms
4,380 KB
testcase_26 AC 126 ms
4,380 KB
testcase_27 AC 125 ms
4,484 KB
testcase_28 AC 129 ms
4,376 KB
testcase_29 AC 124 ms
4,376 KB
testcase_30 AC 125 ms
4,384 KB
testcase_31 AC 126 ms
4,380 KB
testcase_32 AC 127 ms
4,380 KB
testcase_33 AC 126 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
const ll MOD = 1000000007;
const ll INF = 1e18;
#define REP(i, n) for(int i = 0; i < n; i++)
#define ALL(v) v.begin(), v.end()

ll power(ll x, ll y) {
	if (y==0) return 1;
	else if (y==1) return x%MOD;
	else if (y%2==0) { ll pow=power(x,y/2); return (pow*pow)%MOD; } 
	else { ll pow=power(x,y/2); return ((pow*pow)%MOD)*x%MOD; }
}
ll divid(ll x, ll y) {
	return ((x%MOD)*power(y,MOD-2))%MOD;
}

int main() {
	int h, w; cin >> h >> w;
	VVI a(h,VI(w));
	VI fy(h,1), fx(w,1);
	VI zy(h,0), zx(w,0);
	ll prd=1;
	int zc=0;
	ll aa;
	REP(i,h)REP(j,w){
		cin >> aa;
		a[i][j]=aa;
		if(aa==0){
			zy[i]++;
			zx[j]++;
			zc++;
			continue;
		}
		fy[i]=fy[i]*aa%MOD;
		fx[j]=fx[j]*aa%MOD;
		prd=prd*aa%MOD;
	}
	int q; cin >> q;
	int r, c;
	while(q--){
		cin >> r >> c;
		r--; c--;
		if(zy[r]+zx[c]<zc+(a[r][c]==0))
			cout << 0 << endl;
		else{
			ll ans=prd;
			ans=divid(ans,fy[r]);
			ans=divid(ans,fx[c]);
			if(a[r][c]!=0)
				ans=ans*a[r][c]%MOD;
			cout << ans << endl;
		}
	}
	return 0;
}
0