結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | hiro71687k |
提出日時 | 2023-08-03 12:45:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 278 ms / 2,000 ms |
コード長 | 1,834 bytes |
コンパイル時間 | 3,968 ms |
コンパイル使用メモリ | 264,988 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-13 09:29:09 |
合計ジャッジ時間 | 9,992 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | AC | 199 ms
5,248 KB |
testcase_02 | AC | 155 ms
5,248 KB |
testcase_03 | AC | 213 ms
5,248 KB |
testcase_04 | AC | 237 ms
5,248 KB |
testcase_05 | AC | 254 ms
5,248 KB |
testcase_06 | AC | 168 ms
5,248 KB |
testcase_07 | AC | 158 ms
5,248 KB |
testcase_08 | AC | 214 ms
5,248 KB |
testcase_09 | AC | 240 ms
5,248 KB |
testcase_10 | AC | 278 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
evil_1 | TLE | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using namespace std; using ll=long long; using ld=long double; ld pie=3.141592653589793; ll mod=1000000007; ll inf=10099990; int main(){ ll n,m; cin >> n >> m; vector<vector<ll>>a(m,vector<ll>(m)); for (ll i = 0; i < m; i++) { for (ll j = 0; j < m; j++) { cin >> a[i][j]; } } vector<vector<ll>>b(m,vector<ll>(m)); for (ll i = 0; i < m; i++) { b[0][i]=a[0][i]; b[i][0]=a[i][0]; if (i>=1) { b[0][i]+=b[0][i-1]; b[i][0]+=b[i-1][0]; } } for (ll i = 1; i < m; i++) { for (ll j = 1; j < m; j++) { b[i][j]=b[i-1][j]+b[i][j-1]-b[i-1][j-1]+a[i][j]; } } for (ll i = 0; i < n; i++) { ll x,y; cin >> x >> y; x--,y--; ll ans=0; for (ll j = 0; j <= x; j++) { for (ll k = 0; k <= y; k++) { ll z=0; if (j>0&&k>0) { z+=b[j-1][k-1]; } for (ll l = x; l < m; l++) { for (ll o = y; o < m; o++) { ll now=z; if (j>0) { now-=b[j-1][o]; } if (k>0) { now-=b[l][k-1]; } now+=b[l][o]; if (now==0) { ans++; } } } } } cout << ans << endl; } }