結果
問題 | No.1490 スライムと爆弾 |
ユーザー | kotatsugame |
提出日時 | 2021-04-24 04:16:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 761 bytes |
コンパイル時間 | 509 ms |
コンパイル使用メモリ | 66,548 KB |
実行使用メモリ | 37,104 KB |
最終ジャッジ日時 | 2024-07-04 08:57:09 |
合計ジャッジ時間 | 4,099 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 3 ms
7,888 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 3 ms
7,760 KB |
testcase_06 | AC | 2 ms
6,948 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 3 ms
7,504 KB |
testcase_09 | WA | - |
testcase_10 | AC | 3 ms
6,944 KB |
testcase_11 | AC | 3 ms
6,944 KB |
testcase_12 | AC | 3 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 191 ms
37,080 KB |
testcase_26 | WA | - |
testcase_27 | AC | 190 ms
36,976 KB |
testcase_28 | AC | 124 ms
36,576 KB |
testcase_29 | AC | 124 ms
36,436 KB |
testcase_30 | WA | - |
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 6 | main() | ^~~~
ソースコード
#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[2001][2001]; 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)rx=H; if(ry>W)ry=W; 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; }