結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | 0w1 |
提出日時 | 2018-12-10 01:38:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,093 ms / 2,000 ms |
コード長 | 1,163 bytes |
コンパイル時間 | 2,194 ms |
コンパイル使用メモリ | 209,824 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-09-16 15:42:26 |
合計ジャッジ時間 | 16,256 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 1,035 ms
6,940 KB |
testcase_02 | AC | 1,002 ms
6,940 KB |
testcase_03 | AC | 1,044 ms
6,940 KB |
testcase_04 | AC | 1,069 ms
6,944 KB |
testcase_05 | AC | 1,081 ms
6,944 KB |
testcase_06 | AC | 1,013 ms
6,940 KB |
testcase_07 | AC | 1,007 ms
6,940 KB |
testcase_08 | AC | 1,048 ms
6,944 KB |
testcase_09 | AC | 1,068 ms
6,944 KB |
testcase_10 | AC | 1,093 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
evil_1 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; signed main() { ios::sync_with_stdio(false); int N, M; cin >> N >> M; vector<vector<int>> A(M, vector<int>(M)); for (int i = 0; i < M; ++i) for (int j = 0; j < M; ++j) cin >> A[i][j]; vector<vector<int64_t>> sum(M, vector<int64_t>(M)); for (int i = 0; i < M; ++i) for (int j = 0; j < M; ++j) { sum[i][j] = A[i][j]; if (i) sum[i][j] += sum[i - 1][j]; if (j) sum[i][j] += sum[i][j - 1]; if (i && j) sum[i][j] -= sum[i - 1][j - 1]; } auto query = [&](int r1, int c1, int r2, int c2) { int64_t res = sum[r2][c2]; if (r1) res -= sum[r1 - 1][c2]; if (c1) res -= sum[r2][c1 - 1]; if (r1 && c1) res += sum[r1 - 1][c1 - 1]; return res; }; for (int i = 0; i < N; ++i) { int X, Y; cin >> X >> Y; --X, --Y; int ans = 0; for (int r1 = 0; r1 < M; ++r1) for (int c1 = 0; c1 < M; ++c1) for (int r2 = r1; r2 < M; ++r2) for (int c2 = c1; c2 < M; ++c2) if (r1 <= X && X <= r2 && c1 <= Y && Y <= c2) ans += query(r1, c1, r2, c2) == 0; cout << ans << endl; } return 0; }