結果

問題 No.1490 スライムと爆弾
ユーザー kotatsugamekotatsugame
提出日時 2021-04-24 04:17:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 66,628 KB
実行使用メモリ 37,112 KB
最終ジャッジ日時 2024-07-04 08:57:17
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
8,024 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
9,804 KB
testcase_05 AC 2 ms
7,636 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
9,808 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
7,756 KB
testcase_13 AC 119 ms
25,984 KB
testcase_14 AC 140 ms
28,860 KB
testcase_15 AC 74 ms
30,472 KB
testcase_16 AC 109 ms
24,612 KB
testcase_17 AC 56 ms
24,280 KB
testcase_18 AC 145 ms
26,524 KB
testcase_19 AC 128 ms
32,664 KB
testcase_20 AC 94 ms
31,864 KB
testcase_21 AC 55 ms
32,420 KB
testcase_22 AC 133 ms
26,632 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 192 ms
36,892 KB
testcase_26 AC 191 ms
37,112 KB
testcase_27 AC 188 ms
37,096 KB
testcase_28 AC 119 ms
35,576 KB
testcase_29 AC 122 ms
35,312 KB
testcase_30 AC 272 ms
36,924 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int H,W,N,M;
int T[1<<17],U[1<<17],L[1<<17],R[1<<17],A[1<<17];
long S[2002][2002];
main()
{
	cin>>H>>W>>N>>M;
	for(int i=0;i<N;i++)
	{
		cin>>T[i]>>U[i]>>L[i]>>R[i]>>A[i];
		T[i]--;L[i]--;
	}
	for(int i=0;i<M;i++)
	{
		int x,y,b,c;cin>>x>>y>>b>>c;
		int lx=x-b,rx=x+b+1,ly=y-b,ry=y+b+1;
		if(lx<0)lx=0;
		if(ly<0)ly=0;
		if(rx>H+1)rx=H+1;
		if(ry>W+1)ry=W+1;
		S[lx][ly]+=c;
		S[lx][ry]-=c;
		S[rx][ly]-=c;
		S[rx][ry]+=c;
	}
	for(int _=0;_<2;_++)
	{
		for(int i=0;i<=H;i++)for(int j=0;j<=W;j++)
		{
			if(i)S[i][j]+=S[i-1][j];
			if(j)S[i][j]+=S[i][j-1];
			if(i&&j)S[i][j]-=S[i-1][j-1];
		}
	}
	int cnt=0;
	for(int i=0;i<N;i++)
	{
		if(S[U[i]][R[i]]-S[U[i]][L[i]]-S[T[i]][R[i]]+S[T[i]][L[i]]<A[i])cnt++;
	}
	cout<<cnt<<endl;
}
0