結果

問題 No.1141 田グリッド
ユーザー DAyamaCTFDAyamaCTF
提出日時 2020-07-31 21:59:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 1,773 bytes
コンパイル時間 2,785 ms
コンパイル使用メモリ 150,580 KB
実行使用メモリ 8,800 KB
最終ジャッジ日時 2023-09-20 23:15:07
合計ジャッジ時間 5,121 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,384 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 AC 3 ms
4,376 KB
testcase_11 AC 3 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 43 ms
5,744 KB
testcase_14 AC 52 ms
8,800 KB
testcase_15 AC 41 ms
4,568 KB
testcase_16 AC 41 ms
4,712 KB
testcase_17 AC 41 ms
4,620 KB
testcase_18 AC 26 ms
4,564 KB
testcase_19 AC 26 ms
4,560 KB
testcase_20 AC 26 ms
4,620 KB
testcase_21 AC 41 ms
4,656 KB
testcase_22 AC 41 ms
4,656 KB
testcase_23 AC 42 ms
4,556 KB
testcase_24 AC 27 ms
4,620 KB
testcase_25 AC 27 ms
4,656 KB
testcase_26 AC 26 ms
4,572 KB
testcase_27 AC 26 ms
4,660 KB
testcase_28 AC 26 ms
4,748 KB
testcase_29 AC 27 ms
4,660 KB
testcase_30 AC 27 ms
4,560 KB
testcase_31 AC 26 ms
4,572 KB
testcase_32 AC 26 ms
4,700 KB
testcase_33 AC 25 ms
4,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> P;

#define fi first
#define se second
#define repl(i,a,b) for(ll i=(ll)(a);i<(ll)(b);i++)
#define rep(i,n) repl(i,0,n)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cout<<#x"="<<x<<endl
#define mmax(x,y) (x>y?x:y)
#define mmin(x,y) (x<y?x:y)
#define maxch(x,y) x=mmax(x,y)
#define minch(x,y) x=mmin(x,y)
#define uni(x) x.erase(unique(all(x)),x.end())
#define exist(x,y) (find(all(x),y)!=x.end())
#define bcnt __builtin_popcountll

#define INF 1e16
#define mod 1000000007

ll mod_pow(ll x,ll n){
  ll res=1;
  while(n>0){
    if(n&1LL)res=res*x%mod;
    x=x*x%mod;
    n>>=1LL;
  }
  return res;
}

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

  int H,W;
  cin>>H>>W;
  vector<vector<ll>> A(H,vector<ll>(W));
  rep(i,H)rep(j,W)cin>>A[i][j];

  vector<ll> rsum(H,1),csum(W,1);
  ll tot=1;
  rep(i,H){
    rep(j,W){
      if(A[i][j]!=0)(rsum[i]*=A[i][j])%=mod;
      if(A[i][j]!=0)(csum[j]*=A[i][j])%=mod;
      if(A[i][j]!=0)(tot*=A[i][j])%=mod;
    }
  }
  vector<vector<ll>> cnt0(H+1,vector<ll>(W+1,0));
  ll cnt0tot=0;
  rep(i,H)rep(j,W){
    if(A[i][j]==0){
      cnt0[i+1][j+1]=1;
      cnt0tot++;
    }
  }
  rep(i,H+1)rep(j,W)cnt0[i][j+1]+=cnt0[i][j];
  rep(i,H)rep(j,W+1)cnt0[i+1][j]+=cnt0[i][j];

  int Q;
  cin>>Q;
  while(Q--){
    int r,c;
    cin>>r>>c;
    r--;c--;

    if((cnt0[r+1][W]-cnt0[r][W]-cnt0[r+1][0]+cnt0[r][0])+(cnt0[H][c+1]-cnt0[H][c]-cnt0[0][c+1]+cnt0[0][c])-(A[r][c]==0?1:0)<cnt0tot){
      cout<<0<<"\n";
      continue;
    }
    ll ans=tot;
    (ans*=mod_pow(rsum[r],mod-2))%=mod;
    (ans*=mod_pow(csum[c],mod-2))%=mod;
    if(A[r][c]!=0)(ans*=A[r][c])%=mod;
    cout<<ans<<"\n";
  }

  return 0;
}
0