結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | Pachicobue |
提出日時 | 2018-12-03 17:13:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 229 ms / 2,000 ms |
コード長 | 1,336 bytes |
コンパイル時間 | 2,006 ms |
コンパイル使用メモリ | 202,100 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 05:40:20 |
合計ジャッジ時間 | 4,412 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 229 ms
6,944 KB |
testcase_02 | AC | 174 ms
6,940 KB |
testcase_03 | AC | 165 ms
6,940 KB |
testcase_04 | AC | 158 ms
6,940 KB |
testcase_05 | AC | 154 ms
6,940 KB |
testcase_06 | AC | 153 ms
6,940 KB |
testcase_07 | AC | 152 ms
6,944 KB |
testcase_08 | AC | 152 ms
6,944 KB |
testcase_09 | AC | 153 ms
6,944 KB |
testcase_10 | AC | 154 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
evil_1 | AC | 176 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using ll = long long; constexpr int MAX = 130; ll A[MAX][MAX]; ll B[MAX + 1][MAX + 1]; int main() { int N, M; std::cin >> N >> M; for (int i = 0; i < M; i++) { for (int j = 0; j < M; j++) { std::cin >> A[i][j]; } } for (int i = 0; i < M; i++) { for (int j = 1; j < M; j++) { A[i][j] += A[i][j - 1]; } } for (int i = 1; i < M; i++) { for (int j = 0; j < M; j++) { A[i][j] += A[i - 1][j]; } } auto sum = [&](const int y1, const int x1, const int y2, const int x2) { return A[y2][x2] - (y1 == 0 ? 0LL : A[y1 - 1][x2]) - (x1 == 0 ? 0LL : A[y2][x1 - 1]) + (x1 == 0 or y1 == 0 ? 0LL : A[y1 - 1][x1 - 1]); }; for (int i = 0; i < M; i++) { for (int j = 0; j < M; j++) { for (int k = i; k < M; k++) { for (int l = j; l < M; l++) { if (sum(i, j, k, l) == 0) { B[i][j]++, B[k + 1][j]--, B[i][l + 1]--, B[k + 1][l + 1]++; } } } } } for (int i = 0; i < M; i++) { for (int j = 1; j < M; j++) { B[i][j] += B[i][j - 1]; } } for (int i = 1; i < M; i++) { for (int j = 0; j < M; j++) { B[i][j] += B[i - 1][j]; } } for (int i = 0, y, x; i < N; i++) { std::cin >> y >> x, y--, x--, std::cout << B[y][x] << std::endl; } return 0; }