結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | peroon |
提出日時 | 2019-06-21 05:06:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 605 ms / 2,000 ms |
コード長 | 2,054 bytes |
コンパイル時間 | 1,499 ms |
コンパイル使用メモリ | 168,348 KB |
実行使用メモリ | 10,272 KB |
最終ジャッジ日時 | 2024-06-06 04:49:48 |
合計ジャッジ時間 | 10,896 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,272 KB |
testcase_01 | AC | 549 ms
5,376 KB |
testcase_02 | AC | 531 ms
5,376 KB |
testcase_03 | AC | 546 ms
5,376 KB |
testcase_04 | AC | 562 ms
5,376 KB |
testcase_05 | AC | 578 ms
5,376 KB |
testcase_06 | AC | 544 ms
5,376 KB |
testcase_07 | AC | 528 ms
5,376 KB |
testcase_08 | AC | 546 ms
5,376 KB |
testcase_09 | AC | 558 ms
5,376 KB |
testcase_10 | AC | 605 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
evil_1 | TLE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } #define FOR(i,a,b) for(ll i=(a);i<(b);++i) #define ALL(v) (v).begin(), (v).end() #define p(s) cout<<(s)<<endl #define p2(s, t) cout << (s) << " " << (t) << endl #define br() p("") #define pn(s) cout << (#s) << " " << (s) << endl #define p_yes() p("Yes") #define p_no() p("No") const ll mod = 1e9 + 7; const ll inf = 1e18; void vprint(vector<ll> A){ ll L = A.size(); FOR(i, 0, L){ if(i) cout << ' '; cout << A[i]; } cout << endl; } ll A[150][150]; int main(){ cin.tie(0); ios::sync_with_stdio(false); // input ll N, M; cin >> N >> M; ll H = M; ll W = M; FOR(i, 1, M+1){ FOR(j, 1, M+1){ cin >> A[i][j]; } } // 二次元累積和 // 横 FOR(i, 0, H+1){ FOR(j, 0, W+1){ A[i][j+1] += A[i][j]; } } // 縦 FOR(w, 0, W+1){ FOR(h, 0, H+1){ A[h+1][w] += A[h][w]; } } // FOR(y, 0, 5){ // FOR(x, 0, 5){ // cout << setw(2) << A[y][x] << ' '; // } // cout << endl; // } ll Q = N; while(Q--){ ll x, y; cin >> x >> y; ll count = 0; FOR(x0, 1, W+1){ FOR(x1, x0, W+1){ FOR(y0, 1, H+1){ FOR(y1, y0, H+1){ if(x0<=x && x<=x1 && y0<=y && y<=y1){ //ll sum = A[y1][x1] - A[y0-1][x1] - A[y1][x0-1] + A[y0-1][x0-1]; ll sum = A[x1][y1] - A[x0-1][y1] - A[x1][y0-1] + A[x0-1][y0-1]; if(sum==0){ count++; } } } } } } p(count); } return 0; }