結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | face4 |
提出日時 | 2018-12-04 22:56:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,122 bytes |
コンパイル時間 | 499 ms |
コンパイル使用メモリ | 65,664 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-08 10:07:04 |
合計ジャッジ時間 | 5,870 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1,101 ms
5,376 KB |
testcase_02 | AC | 131 ms
5,376 KB |
testcase_03 | AC | 103 ms
5,376 KB |
testcase_04 | AC | 84 ms
5,376 KB |
testcase_05 | AC | 72 ms
5,376 KB |
testcase_06 | AC | 65 ms
5,376 KB |
testcase_07 | AC | 63 ms
5,376 KB |
testcase_08 | AC | 64 ms
5,376 KB |
testcase_09 | AC | 65 ms
5,376 KB |
testcase_10 | AC | 67 ms
5,376 KB |
testcase_11 | WA | - |
evil_1 | TLE | - |
ソースコード
#include<iostream> using namespace std; #define inRange(x,a,b) (a <= x && x <= b) typedef long long ll; int main(){ int n, m; cin >> n >> m; ll mat[131][131] = {}; for(int i = 1; i <= m; i++){ for(int j = 1; j <= m; j++){ cin >> mat[i][j]; } } for(int i = 1; i <= m; i++){ for(int j = 1; j <= m; j++){ mat[i][j] += mat[i-1][j] + mat[i][j-1] - mat[i-1][j-1]; } } int x[n], y[n]; for(int i = 0; i < n; i++) cin >> x[i] >> y[i]; int ans[10] = {}; for(int i = 1; i <= m; i++){ for(int j = 1; j <= m; j++){ for(int ni = i; ni <= m; ni++){ for(int nj = j; nj <= m; nj++){ int tmp = mat[ni][nj] + mat[i-1][j-1] - mat[i-1][nj] - mat[ni][j-1]; if(tmp != 0) continue; for(int k = 0; k < n; k++){ if(inRange(x[k], i, ni) && inRange(y[k], j, nj)) ans[k]++; } } } } } for(int i = 0; i < n; i++) cout << ans[i] << endl; return 0; }