結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | tkmst201 |
提出日時 | 2021-01-26 11:38:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 197 ms / 2,000 ms |
コード長 | 1,387 bytes |
コンパイル時間 | 2,190 ms |
コンパイル使用メモリ | 210,284 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-23 11:16:49 |
合計ジャッジ時間 | 3,957 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 197 ms
6,940 KB |
testcase_02 | AC | 113 ms
6,944 KB |
testcase_03 | AC | 107 ms
6,940 KB |
testcase_04 | AC | 100 ms
6,944 KB |
testcase_05 | AC | 98 ms
6,948 KB |
testcase_06 | AC | 96 ms
6,944 KB |
testcase_07 | AC | 93 ms
6,944 KB |
testcase_08 | AC | 95 ms
6,940 KB |
testcase_09 | AC | 95 ms
6,940 KB |
testcase_10 | AC | 96 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
evil_1 | AC | 116 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) begin(v),end(v) template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } using ll = long long; using pii = pair<int, int>; constexpr ll INF = 1ll<<30; constexpr ll longINF = 1ll<<60; constexpr ll MOD = 1000000007; constexpr bool debug = false; //---------------------------------// int main() { int N, M; cin >> N >> M; vector A(M, vector(M, 0)); REP(i, M) REP(j, M) scanf("%d", &A[i][j]); vector sum(M + 1, vector(M + 1, 0ll)); REP(i, M) REP(j, M) sum[i + 1][j + 1] = A[i][j]; REP(i, M + 1) REP(j, M) sum[i][j + 1] += sum[i][j]; REP(i, M) REP(j, M + 1) sum[i + 1][j] += sum[i][j]; vector ans(M + 1, vector(M + 1, 0)); REP(y1, M) FOR(y2, y1 + 1, M + 1) REP(x1, M) FOR(x2, x1 + 1, M + 1) { ll s = sum[y2][x2] - sum[y1][x2] - sum[y2][x1] + sum[y1][x1]; if (s == 0) { ++ans[y1][x1]; --ans[y1][x2]; --ans[y2][x1]; ++ans[y2][x2]; } } REP(i, M + 1) REP(j, M) ans[i][j + 1] += ans[i][j]; REP(i, M) REP(j, M + 1) ans[i + 1][j] += ans[i][j]; REP(i, N) { int x, y; scanf("%d %d", &x, &y); printf("%d\n", ans[x - 1][y - 1]); } }