結果

問題 No.755 Zero-Sum Rectangle
ユーザー rogi52rogi52
提出日時 2022-10-12 23:45:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 208,508 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 11:33:43
合計ジャッジ時間 4,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 202 ms
5,248 KB
testcase_02 AC 98 ms
5,376 KB
testcase_03 AC 89 ms
5,376 KB
testcase_04 AC 82 ms
5,376 KB
testcase_05 AC 77 ms
5,376 KB
testcase_06 AC 71 ms
5,376 KB
testcase_07 AC 72 ms
5,376 KB
testcase_08 AC 73 ms
5,376 KB
testcase_09 AC 70 ms
5,376 KB
testcase_10 AC 72 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
evil_1 AC 100 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N,M; cin >> N >> M;
    vector<vector<ll>> A(M, vector<ll>(M));
    rep(i,M)rep(j,M) cin >> A[i][j];
    vector<vector<ll>> A_sum(M + 1, vector<ll>(M + 1, 0));
    rep(i,M)rep(j,M) A_sum[i + 1][j + 1] = A_sum[i][j + 1] + A_sum[i + 1][j] - A_sum[i][j] + A[i][j];

    vector<vector<ll>> imos(M + 1, vector<ll>(M + 1, 0));
    rep(x,M)rep(y,M) {
        for(int i = x + 1; i <= M; i++) for(int j = y + 1; j <= M; j++) {
            ll SUM = A_sum[i][j] - A_sum[x][j] - A_sum[i][y] + A_sum[x][y];
            if(SUM == 0LL) {
                imos[x][y]++;
                imos[x][j]--;
                imos[i][y]--;
                imos[i][j]++;
            }
        }
    }

    rep(i,M+1)rep(j,M) imos[i][j + 1] += imos[i][j];
    rep(i,M)rep(j,M+1) imos[i + 1][j] += imos[i][j];

    rep(i,N) {
        int x,y; cin >> x >> y; x--; y--;
        cout << imos[x][y] << "\n";
    }
}
0