結果

問題 No.755 Zero-Sum Rectangle
ユーザー rickythetarickytheta
提出日時 2018-12-07 18:03:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,210 ms / 2,000 ms
コード長 1,134 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 166,440 KB
実行使用メモリ 108,800 KB
最終ジャッジ日時 2024-09-14 03:28:59
合計ジャッジ時間 14,116 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,624 KB
testcase_01 AC 70 ms
7,552 KB
testcase_02 AC 489 ms
41,984 KB
testcase_03 AC 655 ms
55,680 KB
testcase_04 AC 783 ms
66,944 KB
testcase_05 AC 1,004 ms
78,848 KB
testcase_06 AC 1,063 ms
89,856 KB
testcase_07 AC 1,210 ms
108,032 KB
testcase_08 AC 1,167 ms
108,672 KB
testcase_09 AC 1,138 ms
108,800 KB
testcase_10 AC 1,126 ms
108,288 KB
testcase_11 AC 3 ms
5,376 KB
evil_1 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:26:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   26 |         scanf("%d%d",&n,&m);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:27:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   27 |         REP(i,m)REP(j,m)scanf("%lld",&a[j][i]);
      |                         ~~~~~^~~~~~~~~~~~~~~~~
main.cpp:31:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   31 |         REP(i,n)scanf("%d%d",qx+i,qy+i),qx[i]--,qy[i]--;
      |                 ~~~~~^~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

#define REP(i,n) for(int i=0;i<(int)(n);i++)
#define FOR(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define FORR(i,a,b) for(int i=(int)(b)-1;i>=(int)(a);i--)

#define CHMIN(a,b) (a)=min((a),(b))
#define CHMAX(a,b) (a)=max((a),(b))

#define DEBUG(x) cout<<#x<<": "<<(x)<<endl

int n,m;
ll a[152][152], asum[152][152];
int qx[12], qy[12];
int ans[12];
unordered_map<ll,int> M[152][152];

int main(){
	scanf("%d%d",&n,&m);
	REP(i,m)REP(j,m)scanf("%lld",&a[j][i]);
	REP(i,m)REP(j,m)asum[i+1][j+1] = a[i][j];
	REP(i,m+1)REP(j,m+1)asum[i+1][j] += asum[i][j];
	REP(i,m+1)REP(j,m+1)asum[i][j+1] += asum[i][j];
	REP(i,n)scanf("%d%d",qx+i,qy+i),qx[i]--,qy[i]--;
	FORR(jj,0,m){
		REP(i,m)REP(ii,m){
			ll X = asum[ii+1][jj+1] - asum[i][jj+1];
			M[i][ii][X]++;
		}
		REP(q,n)if(qx[q]==jj){
			int x = qx[q], y = qy[q];
			REP(i,y+1)REP(j,x+1)FOR(ii,y,m){
				ll X = asum[ii+1][j] - asum[i][j];
				ans[q] += M[i][ii][X];
			}
		}
	}
	REP(i,n)printf("%d\n",ans[i]);
	return 0;
}
0