結果
問題 | No.1490 スライムと爆弾 |
ユーザー | tnakao0123 |
提出日時 | 2021-04-24 03:27:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 110 ms / 2,000 ms |
コード長 | 1,854 bytes |
コンパイル時間 | 809 ms |
コンパイル使用メモリ | 96,172 KB |
実行使用メモリ | 36,976 KB |
最終ジャッジ日時 | 2024-07-04 08:55:43 |
合計ジャッジ時間 | 2,994 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 3 ms
7,764 KB |
testcase_03 | AC | 2 ms
7,760 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 3 ms
7,752 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 50 ms
25,952 KB |
testcase_14 | AC | 55 ms
28,632 KB |
testcase_15 | AC | 32 ms
30,424 KB |
testcase_16 | AC | 42 ms
23,392 KB |
testcase_17 | AC | 25 ms
24,548 KB |
testcase_18 | AC | 54 ms
26,496 KB |
testcase_19 | AC | 49 ms
32,736 KB |
testcase_20 | AC | 39 ms
33,316 KB |
testcase_21 | AC | 25 ms
31,592 KB |
testcase_22 | AC | 49 ms
27,828 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 85 ms
36,808 KB |
testcase_26 | AC | 92 ms
36,836 KB |
testcase_27 | AC | 90 ms
36,976 KB |
testcase_28 | AC | 59 ms
36,572 KB |
testcase_29 | AC | 61 ms
35,948 KB |
testcase_30 | AC | 110 ms
36,844 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1490.cc: No.1490 スライムと爆弾 - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_H = 2000; const int MAX_W = 2000; const int MAX_N = 100000; const int MAX_M = 100000; /* typedef */ typedef long long ll; struct Slime { int y0, y1, x0, x1, a; Slime() {} void read() { scanf("%d%d%d%d%d", &y0, &y1, &x0, &x1, &a); y0--, x0--; } }; /* global variables */ Slime sls[MAX_N]; ll cs[MAX_H + 2][MAX_W + 2]; /* subroutines */ /* main */ int main() { int h, w, n, m; scanf("%d%d%d%d", &h, &w, &n, &m); for (int i = 0; i < n; i++) sls[i].read(); for (int i = 0; i < m; i++) { int y, x, b, c; scanf("%d%d%d%d", &y, &x, &b, &c); int y0 = max(1, y - b), x0 = max(1, x - b); int y1 = min(h + 1, y + b + 1), x1 = min(w + 1, x + b + 1); cs[y0][x0] += c; cs[y0][x1] -= c; cs[y1][x0] -= c; cs[y1][x1] += c; } for (int y = 0; y < h; y++) for (int x = 0; x < w; x++) cs[y + 1][x + 1] += cs[y + 1][x] + cs[y][x + 1] - cs[y][x]; for (int y = 0; y < h; y++) for (int x = 0; x < w; x++) cs[y + 1][x + 1] += cs[y + 1][x] + cs[y][x + 1] - cs[y][x]; //for (int y = 1; y <= h; y++) //for (int x = 1; x <= w; x++) //printf("%d%c", cs[y][x], (x < w) ? ' ' : '\n'); int cnt = 0; for (int i = 0; i < n; i++) { Slime &sli = sls[i]; ll sum = cs[sli.y1][sli.x1] - cs[sli.y1][sli.x0] - cs[sli.y0][sli.x1] + cs[sli.y0][sli.x0]; if (sli.a > sum) cnt++; } printf("%d\n", cnt); return 0; }