結果

問題 No.755 Zero-Sum Rectangle
ユーザー furafura
提出日時 2020-05-31 22:37:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 525 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 209,460 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-11-19 01:26:51
合計ジャッジ時間 9,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 16 ms
6,816 KB
testcase_02 AC 219 ms
6,816 KB
testcase_03 AC 320 ms
6,816 KB
testcase_04 AC 419 ms
6,820 KB
testcase_05 AC 445 ms
6,816 KB
testcase_06 AC 432 ms
6,816 KB
testcase_07 AC 347 ms
6,816 KB
testcase_08 AC 513 ms
6,816 KB
testcase_09 AC 433 ms
6,820 KB
testcase_10 AC 525 ms
6,816 KB
testcase_11 AC 2 ms
6,816 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