結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | m_tsubasa |
提出日時 | 2018-12-03 15:16:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 173 ms / 2,000 ms |
コード長 | 1,294 bytes |
コンパイル時間 | 1,624 ms |
コンパイル使用メモリ | 167,516 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-01 05:37:16 |
合計ジャッジ時間 | 3,657 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 173 ms
5,376 KB |
testcase_02 | AC | 142 ms
5,376 KB |
testcase_03 | AC | 136 ms
5,376 KB |
testcase_04 | AC | 131 ms
5,376 KB |
testcase_05 | AC | 127 ms
5,376 KB |
testcase_06 | AC | 125 ms
5,376 KB |
testcase_07 | AC | 122 ms
5,376 KB |
testcase_08 | AC | 118 ms
5,376 KB |
testcase_09 | AC | 120 ms
5,376 KB |
testcase_10 | AC | 121 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
evil_1 | AC | 145 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; long long n, m; long long a[150][150] = {0}; long long sum[150][150] = {0}; void solve(); bool ch(int u, int d, int l, int r); int main() { cin >> n >> m; for(int i = 0; i < m; ++i) for(int j = 0; j < m; ++j) { cin >> a[i][j]; if(j != 0) a[i][j] += a[i][j - 1]; if(i != 0) a[i][j] += a[i - 1][j]; if(i != 0 && j != 0) a[i][j] -= a[i - 1][j - 1]; } solve(); for(int i = 0; i < n; ++i) { int x, y; cin >> x >> y; cout << sum[--x][--y] << endl; } return 0; } void solve() { for(int u = 0; u < m; ++u) for(int d = u; d < m; ++d) for(int l = 0; l < m; ++l) for(int r = l; r < m; ++r) { if(ch(u, d, l, r)) { ++sum[u][l]; ++sum[d + 1][r + 1]; --sum[u][r + 1]; --sum[d + 1][l]; } } for(int i = 0; i < m; ++i) for(int j = 0; j < m; ++j) { if(j != 0) sum[i][j] += sum[i][j - 1]; if(i != 0) sum[i][j] += sum[i - 1][j]; if(i != 0 && j != 0) sum[i][j] -= sum[i - 1][j - 1]; } } bool ch(int u, int d, int l, int r) { long long now = a[d][r]; if(l != 0) now -= a[d][l - 1]; if(u != 0) now -= a[u - 1][r]; if(l != 0 && u != 0) now += a[u - 1][l - 1]; return now == 0; }