結果
問題 | No.1141 田グリッド |
ユーザー | nikkukun |
提出日時 | 2020-07-31 21:56:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,595 bytes |
コンパイル時間 | 1,719 ms |
コンパイル使用メモリ | 168,608 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 17:54:19 |
合計ジャッジ時間 | 4,554 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,948 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | AC | 93 ms
6,940 KB |
testcase_14 | AC | 92 ms
6,940 KB |
testcase_15 | AC | 95 ms
6,940 KB |
testcase_16 | AC | 94 ms
6,940 KB |
testcase_17 | AC | 95 ms
6,940 KB |
testcase_18 | AC | 81 ms
6,944 KB |
testcase_19 | AC | 82 ms
6,944 KB |
testcase_20 | AC | 81 ms
6,944 KB |
testcase_21 | AC | 95 ms
6,940 KB |
testcase_22 | AC | 95 ms
6,940 KB |
testcase_23 | AC | 95 ms
6,940 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 81 ms
6,944 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 82 ms
6,944 KB |
testcase_33 | AC | 83 ms
6,940 KB |
ソースコード
// #include <bits/stdc++.h> using namespace std; #define fi first #define se second #define all(x) x.begin(), x.end() #define lch (o << 1) #define rch (o << 1 | 1) typedef double db; typedef long long ll; typedef unsigned int ui; typedef pair<int, int> pint; typedef tuple<int, int, int> tint; const int N = 1e5 + 5; const int MOD = 1e9 + 7; const int INF = 0x3f3f3f3f; const ll INF_LL = 0x3f3f3f3f3f3f3f3f; ll QPow(ll bas, int t) { ll ret = 1; while (t) { if (t & 1) ret = ret * bas % MOD; bas = bas * bas % MOD; t >>= 1; } return ret; } ll Inv(ll x) { return QPow(x, MOD - 2); } int n, m; int Idx(int x, int y) { return (x - 1) * m + y - 1; } int a[N]; ll r[N], c[N]; int r0[N], c0[N]; int main() { ios::sync_with_stdio(0); cin >> n >> m; int sum0 = 0; ll prod = 1; for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) { cin >> a[Idx(i, j)]; if (a[Idx(i, j)] == 0) sum0++; else prod = prod * a[Idx(i, j)] % MOD; } for (int i = 1; i <= n; i++) { r[i] = 1; for (int j = 1; j <= m; j++) { if (a[Idx(i, j)] == 0) r0[i]++; else r[i] = r[i] * a[Idx(i, j)] % MOD; } } for (int j = 1; j <= m; j++) { c[j] = 1; for (int i = 1; i <= n; i++) { if (a[Idx(i, j)] == 0) c0[j]++; else c[j] = c[j] * a[Idx(i, j)] % MOD; } } int q; cin >> q; while (q--) { int x, y; cin >> x >> y; int res = sum0 - r0[x] - c0[y] + (a[Idx(x, y)] == 0); if (res) { cout << 0 << endl; } else { ll ans = prod * Inv(r[x]) % MOD * Inv(c[y]) % MOD * a[Idx(x, y)] % MOD; cout << ans << endl; } } return 0; }