結果
問題 | No.1141 田グリッド |
ユーザー | 夜 |
提出日時 | 2021-03-19 20:03:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 208 ms / 2,000 ms |
コード長 | 1,499 bytes |
コンパイル時間 | 928 ms |
コンパイル使用メモリ | 98,496 KB |
実行使用メモリ | 8,972 KB |
最終ジャッジ日時 | 2024-11-18 18:18:42 |
合計ジャッジ時間 | 7,474 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 4 ms
6,820 KB |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 4 ms
6,816 KB |
testcase_04 | AC | 4 ms
6,820 KB |
testcase_05 | AC | 4 ms
6,820 KB |
testcase_06 | AC | 3 ms
6,820 KB |
testcase_07 | AC | 3 ms
6,820 KB |
testcase_08 | AC | 7 ms
6,820 KB |
testcase_09 | AC | 6 ms
7,672 KB |
testcase_10 | AC | 7 ms
6,820 KB |
testcase_11 | AC | 7 ms
6,816 KB |
testcase_12 | AC | 7 ms
6,820 KB |
testcase_13 | AC | 206 ms
7,168 KB |
testcase_14 | AC | 208 ms
7,552 KB |
testcase_15 | AC | 197 ms
6,816 KB |
testcase_16 | AC | 194 ms
6,876 KB |
testcase_17 | AC | 195 ms
6,820 KB |
testcase_18 | AC | 137 ms
8,440 KB |
testcase_19 | AC | 135 ms
7,040 KB |
testcase_20 | AC | 137 ms
8,972 KB |
testcase_21 | AC | 196 ms
6,912 KB |
testcase_22 | AC | 197 ms
6,816 KB |
testcase_23 | AC | 199 ms
6,824 KB |
testcase_24 | AC | 138 ms
6,820 KB |
testcase_25 | AC | 140 ms
6,820 KB |
testcase_26 | AC | 136 ms
6,820 KB |
testcase_27 | AC | 137 ms
6,816 KB |
testcase_28 | AC | 138 ms
6,820 KB |
testcase_29 | AC | 135 ms
6,824 KB |
testcase_30 | AC | 135 ms
6,816 KB |
testcase_31 | AC | 136 ms
7,168 KB |
testcase_32 | AC | 136 ms
7,040 KB |
testcase_33 | AC | 135 ms
6,912 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <iomanip> #include <cmath> #include <stdio.h> #include <queue> #include <deque> #include <cstdio> #include <set> #include <map> #include <bitset> #include <stack> #include <cctype> using namespace std; long long mod = 1000000007; long long m_pow(long long x, long long y) { long long ans = 1; while (y > 0) { if ((y & 1) == 1) { ans = ans * x % mod; } x = x * x % mod; y >>= 1; } return ans; } vector<vector<long long>> a(100010); long long zx[100010] = {}, zy[100010] = {}; long long mx[100010], my[100010]; int main() { int h, w; cin >> h >> w; long long m = 1, z = 0; for (int i = 0; i < h; i++) { mx[i] = 1; } for (int i = 0; i < w; i++) { my[i] = 1; } for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { long long a1; cin >> a1; a[i].emplace_back(a1); if (a1 != 0) { m *= a1, m %= mod; mx[i] *= a1, mx[i] %= mod; my[j] *= a1, my[j] %= mod; } else { zx[i]++, zy[j]++; z++; } } } int q; cin >> q; for (int i = 0; i < q; i++) { int r, c; cin >> r >> c; r--, c--; int z1 = zx[r] + zy[c]; if (a[r][c] == 0)z1--; if (z - z1 == 0) { long long x = m_pow(mx[r], 1000000005); long long y = m_pow(my[c], 1000000005); long long ans = m; ans *= x, ans %= mod; ans *= y, ans %= mod; if (a[r][c] != 0) { ans *= a[r][c], ans %= mod; } cout << ans << endl; } else { cout << 0 << endl; } } }