結果
問題 | No.1141 田グリッド |
ユーザー | yakki |
提出日時 | 2020-07-31 22:16:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,891 bytes |
コンパイル時間 | 1,222 ms |
コンパイル使用メモリ | 129,064 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-07-06 18:35:47 |
合計ジャッジ時間 | 6,884 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 5 ms
6,944 KB |
testcase_09 | AC | 4 ms
6,944 KB |
testcase_10 | AC | 6 ms
6,944 KB |
testcase_11 | AC | 7 ms
6,940 KB |
testcase_12 | AC | 5 ms
6,944 KB |
testcase_13 | RE | - |
testcase_14 | AC | 212 ms
9,088 KB |
testcase_15 | AC | 212 ms
6,940 KB |
testcase_16 | AC | 207 ms
6,940 KB |
testcase_17 | AC | 201 ms
6,944 KB |
testcase_18 | AC | 202 ms
6,944 KB |
testcase_19 | AC | 205 ms
6,944 KB |
testcase_20 | AC | 200 ms
6,944 KB |
testcase_21 | AC | 207 ms
6,940 KB |
testcase_22 | AC | 212 ms
6,940 KB |
testcase_23 | AC | 207 ms
6,940 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<bitset> #include<set> #include<map> #include<stack> #include<queue> #include<deque> #include<list> #include<iomanip> #include<cmath> #include<cstring> #include<functional> #include<cstdio> #include<cstdlib> using namespace std; #define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, n) repr(i, 0, n) #define INF 2e9 #define MOD 1000000007 //#define MOD 998244353 #define LINF (long long)4e18 #define jck 3.141592 #define PI acos(-1) const double EPS = 1e-10; using ll = long long; using Pi = pair<int,int>; using Pl = pair<ll,ll>; ll modinv(ll a, ll m) { ll b = m, u = 1, v = 0; while (b) { ll t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } u %= m; if (u < 0) u += m; return u; } int main(){ int h,w; cin >> h >> w; vector<vector<int>> a(h,vector<int>(w)); rep(i,h)rep(j,w) cin >> a[i][j]; int q; cin >> q; vector<vector<ll>> seki(h+1,vector<ll>(w+1)); rep(i,h+1) seki[i][0] = 1; rep(i,w+1) seki[0][i] = 1; rep(i,h)rep(j,w){ seki[i+1][j+1] = (a[i][j] == 0 ? 1:a[i][j])*seki[i+1][j]%MOD*seki[i][j+1]%MOD*modinv(seki[i][j],MOD)%MOD; } vector<int> h0(h),w0(h); int cnt = 0; rep(i,h){ rep(j,w){ if(a[i][j] == 0){ h0[i]++; cnt++; } } } rep(i,w){ rep(j,h){ if(a[j][i] == 0){ w0[i]++; cnt++; } } } while(q--){ int r,c; cin >> r >> c; r--; c--; ll ans = seki[h][w]*modinv(seki[r+1][w]*modinv(seki[r][w],MOD)%MOD,MOD)%MOD*modinv(seki[h][c+1]*modinv(seki[h][c]%MOD,MOD),MOD)%MOD*a[r][c]%MOD; if(cnt-h0[r]-w0[c] > 0) cout << 0 << endl; else cout << ans << endl; } }