結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | k |
提出日時 | 2020-09-08 19:01:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 117 ms / 2,000 ms |
コード長 | 1,059 bytes |
コンパイル時間 | 2,184 ms |
コンパイル使用メモリ | 209,628 KB |
実行使用メモリ | 10,272 KB |
最終ジャッジ日時 | 2024-05-07 11:29:24 |
合計ジャッジ時間 | 7,357 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,272 KB |
testcase_01 | AC | 85 ms
6,940 KB |
testcase_02 | AC | 68 ms
6,940 KB |
testcase_03 | AC | 89 ms
6,940 KB |
testcase_04 | AC | 101 ms
6,944 KB |
testcase_05 | AC | 117 ms
6,940 KB |
testcase_06 | AC | 73 ms
6,940 KB |
testcase_07 | AC | 67 ms
6,940 KB |
testcase_08 | AC | 94 ms
6,944 KB |
testcase_09 | AC | 104 ms
6,944 KB |
testcase_10 | AC | 117 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
evil_1 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) #define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++) #define ALL(x) (x).begin(), (x).end() const double PI = acos(-1); int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, m; cin >> n >> m; vector<vector<int> > a(m+1, vector<int>(m+1)); REP (i, m) REP (j, m) cin >> a[i+1][j+1]; vector<vector<long long> > dp(m+1, vector<long long>(m+1)); for (int i = 1; i <= m; i++) { for (int j = 1; j <= m; j++) { dp[i][j] = dp[i][j-1] + dp[i-1][j] - dp[i-1][j-1] + a[i][j]; } } REP (t, n) { int y, x; cin >> y >> x; int ret = 0; for (int y1 = 1; y1 <= y; y1++) { for (int y2 = y; y2 <= m; y2++) { for (int x1 = 1; x1 <= x; x1++) { for (int x2 = x; x2 <= m; x2++) { long long sum = dp[y2][x2] - dp[y2][x1-1] - dp[y1-1][x2] + dp[y1-1][x1-1]; if (sum == 0) ++ret; } } } } cout << ret << endl; } return 0; }