結果

問題 No.755 Zero-Sum Rectangle
ユーザー furafura
提出日時 2020-05-31 22:37:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 557 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 207,352 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-04-29 18:58:53
合計ジャッジ時間 10,145 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,832 KB
testcase_01 AC 18 ms
5,376 KB
testcase_02 AC 240 ms
5,376 KB
testcase_03 AC 345 ms
5,376 KB
testcase_04 AC 455 ms
5,376 KB
testcase_05 AC 484 ms
5,376 KB
testcase_06 AC 458 ms
5,376 KB
testcase_07 AC 376 ms
5,376 KB
testcase_08 AC 552 ms
5,376 KB
testcase_09 AC 470 ms
5,376 KB
testcase_10 AC 557 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
evil_1 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

int main(){
	int q,n; scanf("%d%d",&q,&n);
	int a[130][130];
	rep(i,n) rep(j,n) scanf("%d",&a[i][j]);

	lint sum[131][131]={};
	rep(i,n) rep(j,n) sum[i+1][j+1]=sum[i+1][j]+sum[i][j+1]-sum[i][j]+a[i][j];

	rep(_,q){
		int y0,x0; scanf("%d%d",&y0,&x0); y0--; x0--;

		lint ans=0;
		map<lint,int> f;
		rep(i,y0+1) for(int j=y0+1;j<=n;j++) {
			f.clear();
			rep(k,n+1){
				lint b=sum[j][k]-sum[i][k];
				if(k<=x0) ++f[b];
				else      ans+=f[b];
			}
		}
		printf("%lld\n",ans);
	}

	return 0;
}
0