結果
問題 | No.1141 田グリッド |
ユーザー | ryochansq |
提出日時 | 2020-07-31 22:04:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 156 ms / 2,000 ms |
コード長 | 2,269 bytes |
コンパイル時間 | 2,197 ms |
コンパイル使用メモリ | 211,228 KB |
実行使用メモリ | 9,600 KB |
最終ジャッジ日時 | 2024-07-06 18:11:25 |
合計ジャッジ時間 | 6,337 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 4 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 5 ms
6,944 KB |
testcase_12 | AC | 4 ms
6,940 KB |
testcase_13 | AC | 139 ms
6,940 KB |
testcase_14 | AC | 156 ms
9,600 KB |
testcase_15 | AC | 136 ms
6,940 KB |
testcase_16 | AC | 137 ms
6,940 KB |
testcase_17 | AC | 141 ms
6,940 KB |
testcase_18 | AC | 122 ms
6,944 KB |
testcase_19 | AC | 119 ms
6,944 KB |
testcase_20 | AC | 115 ms
6,940 KB |
testcase_21 | AC | 136 ms
6,944 KB |
testcase_22 | AC | 141 ms
6,940 KB |
testcase_23 | AC | 142 ms
6,940 KB |
testcase_24 | AC | 116 ms
6,940 KB |
testcase_25 | AC | 117 ms
6,940 KB |
testcase_26 | AC | 119 ms
6,944 KB |
testcase_27 | AC | 116 ms
6,948 KB |
testcase_28 | AC | 121 ms
6,940 KB |
testcase_29 | AC | 120 ms
6,944 KB |
testcase_30 | AC | 121 ms
6,940 KB |
testcase_31 | AC | 117 ms
6,940 KB |
testcase_32 | AC | 118 ms
6,944 KB |
testcase_33 | AC | 116 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(ll i = 0, i##_len = (n); i < i##_len; ++i) #define rep2(i, x, n) for(ll i = x, i##_len = (n); i < i##_len; ++i) #define all(n) begin(n), end(n) using ll = long long; using P = pair<ll, ll>; using vi = vector<int>; using vl = vector<ll>; using vs = vector<string>; using vc = vector<char>; using vb = vector<bool>; using vd = vector<double>; vi dir = {-1, 0, 1, 0, -1, -1, 1, 1, -1}; const int mod = 1000000007; struct mint { ll x; // typedef long long ll; mint(ll x = 0) : x((x % mod + mod) % mod) {} mint operator-() const { return mint(-x); } mint& operator+=(const mint a) { if((x += a.x) >= mod) x -= mod; return *this; } mint& operator-=(const mint a) { if((x += mod - a.x) >= mod) x -= mod; return *this; } mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this; } mint operator+(const mint a) const { return mint(*this) += a; } mint operator-(const mint a) const { return mint(*this) -= a; } mint operator*(const mint a) const { return mint(*this) *= a; } mint pow(ll t) const { if(!t) return 1; mint a = pow(t >> 1); a *= a; if(t & 1) a *= *this; return a; } // for prime mod mint inv() const { return pow(mod - 2); } mint& operator/=(const mint a) { return *this *= a.inv(); } mint operator/(const mint a) const { return mint(*this) /= a; } }; istream& operator>>(istream& is, const mint& a) { return is >> a.x; } ostream& operator<<(ostream& os, const mint& a) { return os << a.x; } mint fact(int n) { if(n == 1 || n == 0) return 1; mint res = n; return res * fact(n - 1); } int main() { ll h, w; cin >> h >> w; vector<mint> r(h, 1), c(w, 1); vector<vl> a(h, vl(w, 1)), za(h, vl(w, 0)); vl zr(h, 0), zc(w, 0); ll zero = 0; mint s = 1; rep(i, h) rep(j, w) { ll b; cin >> b; if(b) { a[i][j] = b; r[i] *= b; c[j] *= b; s *= b; } else { za[i][j] = 1; zr[i]++; zc[j]++; zero++; } } ll q; cin >> q; rep(_, q) { ll i, j; cin >> i >> j; i--; j--; ll nz = zr[i] + zc[j] - za[i][j]; if(nz == zero) cout << s / r[i] / c[j] * a[i][j] << '\n'; else cout << 0 << '\n'; } }