結果
| 問題 | No.1141 田グリッド |
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2020-08-06 15:32:30 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 55 ms / 2,000 ms |
| コード長 | 1,992 bytes |
| コンパイル時間 | 840 ms |
| コンパイル使用メモリ | 101,104 KB |
| 実行使用メモリ | 17,024 KB |
| 最終ジャッジ日時 | 2024-09-19 18:18:07 |
| 合計ジャッジ時間 | 4,384 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 31 |
ソースコード
/* -*- coding: utf-8 -*-
*
* 1141.cc: No.1141 田グリッド - yukicoder
*/
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
using namespace std;
/* constant */
const int MAX_H = 100000;
const int MAX_W = 100000;
const int MOD = 1000000007;
/* typedef */
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
/* global variables */
/* subroutines */
void pmat(int h, int w, vvi &v) {
for (int y = 0; y <= h; y++)
for (int x = 0; x <= w; x++) {
printf("%d ", v[y][x]);
putchar(x < w ? ' ' : '\n');
}
}
/* main */
int main() {
int h, w;
scanf("%d%d", &h, &w);
vvi as(h, vi(w, 1));
for (int y = 0; y < h; y++)
for (int x = 0; x < w; x++) scanf("%d", &as[y][x]);
vvi m00(h + 1, vi(w + 1, 1));
vvi m01(h + 1, vi(w + 1, 1));
vvi m10(h + 1, vi(w + 1, 1));
vvi m11(h + 1, vi(w + 1, 1));
for (int y0 = 0, y1 = h - 1; y0 < h; y0++, y1--) {
int p00 = 1, p01 = 1, p10 = 1, p11 = 1;
for (int x0 = 0, x1 = w - 1; x0 < w; x0++, x1--) {
p00 = (ll)p00 * as[y0][x0] % MOD;
p01 = (ll)p01 * as[y0][x1] % MOD;
p10 = (ll)p10 * as[y1][x0] % MOD;
p11 = (ll)p11 * as[y1][x1] % MOD;
m00[y0 + 1][x0 + 1] = (ll)m00[y0][x0 + 1] * p00 % MOD;
m01[y0 + 1][x1] = (ll)m01[y0][x1] * p01 % MOD;
m10[y1][x0 + 1] = (ll)m10[y1 + 1][x0 + 1] * p10 % MOD;
m11[y1][x1] = (ll)m11[y1 + 1][x1] * p11 % MOD;
}
}
//pmat(h, w, m00); pmat(h, w, m01); pmat(h, w, m10); pmat(h, w, m11);
int q;
scanf("%d", &q);
while (q--) {
int r, c;
scanf("%d%d", &r, &c);
r--, c--;
int p =
(ll)m00[r][c] * m01[r][c + 1] % MOD *
m10[r + 1][c] % MOD * m11[r + 1][c + 1] % MOD;
printf("%d\n", p);
}
return 0;
}
tnakao0123