結果
問題 | No.755 Zero-Sum Rectangle |
ユーザー | tottoripaper |
提出日時 | 2018-12-25 01:12:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 520 ms / 2,000 ms |
コード長 | 1,312 bytes |
コンパイル時間 | 1,674 ms |
コンパイル使用メモリ | 176,144 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-09-25 11:07:32 |
合計ジャッジ時間 | 8,998 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 16 ms
6,812 KB |
testcase_02 | AC | 207 ms
6,940 KB |
testcase_03 | AC | 347 ms
6,940 KB |
testcase_04 | AC | 397 ms
6,940 KB |
testcase_05 | AC | 466 ms
6,940 KB |
testcase_06 | AC | 413 ms
6,940 KB |
testcase_07 | AC | 438 ms
6,944 KB |
testcase_08 | AC | 394 ms
6,940 KB |
testcase_09 | AC | 520 ms
6,940 KB |
testcase_10 | AC | 496 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
evil_1 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define fst(t) std::get<0>(t) #define snd(t) std::get<1>(t) #define thd(t) std::get<2>(t) #define unless(p) if(!(p)) #define until(p) while(!(p)) using ll = long long; using P = std::tuple<int,int>; const int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1}, dy[8] = {0, 0, -1, 1, -1, 1, -1, 1}; int N, M; ll A[140][140]; int main(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); std::cin >> N >> M; for(int i=1;i<=M;++i){ for(int j=1;j<=M;++j){ std::cin >> A[i][j]; } for(int j=2;j<=M;++j){ A[i][j] += A[i][j-1]; } } for(int i=0;i<N;++i){ int x, y; std::cin >> x >> y; std::swap(x, y); ll res = 0; for(int i=1;i<=x;++i){ for(int j=x;j<=M;++j){ ll sum = 0; std::map<ll, int> cnt; cnt[0] = 1; for(int k=1;k<y;++k){ sum += A[k][j] - A[k][i-1]; cnt[sum] += 1; } for(int k=y;k<=M;++k){ sum += A[k][j] - A[k][i-1]; res += cnt[sum]; } } } std::cout << res << std::endl; } }