結果

問題 No.1141 田グリッド
ユーザー pockynypockyny
提出日時 2020-07-31 21:50:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,265 bytes
コンパイル時間 825 ms
コンパイル使用メモリ 79,532 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-07-06 17:42:04
合計ジャッジ時間 11,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 137 ms
8,516 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 359 ms
8,396 KB
testcase_19 AC 416 ms
9,344 KB
testcase_20 AC 407 ms
9,344 KB
testcase_21 AC 744 ms
9,728 KB
testcase_22 AC 746 ms
9,688 KB
testcase_23 AC 743 ms
9,728 KB
testcase_24 WA -
testcase_25 AC 193 ms
8,192 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 197 ms
8,320 KB
testcase_29 AC 584 ms
8,832 KB
testcase_30 WA -
testcase_31 AC 469 ms
10,112 KB
testcase_32 AC 723 ms
9,728 KB
testcase_33 AC 699 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;
ll mod = 1000000007;
vector<ll> A[100010],l[1000],r[1000];
int main(){
    int i,j,h,w; cin >> h >> w;
    bool flag = false;
    if(h>w) flag = true,swap(h,w);
    if(!flag){
        for(i=0;i<h;i++){
            for(j=0;j<w;j++){
                ll v; cin >> v; A[i].push_back(v);
            }
        }
    }else{
        for(i=0;i<w;i++){
            for(j=0;j<h;j++){
                ll v; cin >> v; A[i].push_back(v);
            }
        }
    }
    for(i=0;i<h;i++){
        l[i].push_back(A[i][0]);
        for(j=1;j<w;j++){
            ll b = l[i].back();
            l[i].push_back(A[i][j]*b%mod);
        }
        r[i].push_back(A[i][w - 1]);
        for(j=w - 2;j>=0;j--){
            ll b = r[i].back();
            r[i].push_back(A[i][j]*b%mod);
        }
        reverse(r[i].begin(),r[i].end());
    }
    ll q; cin >> q;
    for(i=0;i<q;i++){
        ll rr,c; cin >> rr >> c; rr--; c--;
        if(flag) swap(rr,c);
        ll ans = 1;
        for(j=0;j<h;j++){
            if(j==rr) continue;
            if(c>0) (ans *= l[j][c - 1]) %= mod;
            if(c<w - 1) (ans *= r[j][c + 1]) %= mod;
        }
        cout << ans << "\n";
    }
}
0