結果
問題 | No.1490 スライムと爆弾 |
ユーザー | んんん |
提出日時 | 2023-01-02 12:56:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,367 bytes |
コンパイル時間 | 1,940 ms |
コンパイル使用メモリ | 208,624 KB |
実行使用メモリ | 24,500 KB |
最終ジャッジ日時 | 2024-05-05 06:14:21 |
合計ジャッジ時間 | 9,465 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 194 ms
18,944 KB |
testcase_29 | AC | 191 ms
18,944 KB |
testcase_30 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int H, W, N, M; cin >> H >> W >> N >> M; vector<vector<int>> fi(H+1, vector<int>(W+1)); vector<vector<int>> query; for (int i = 0; i < N; i++) { int T, U, L, R, A; cin >> T >> U >> L >> R >> A; T--; L--; vector<int> a = {T, U, L, R, A}; query.emplace_back(a); } for (int i = 0; i < M; i++) { int X, Y, B, C; cin >> X >> Y >> B >> C; int T = max(0, X-B-1), U = min(H, X+B); int L = max(0, Y-B-1), R = min(W, Y+B); fi[T][L] -= C; fi[T][R] += C; fi[U][L] += C; fi[U][R] -= C; } for (int i = 0; i <= H; i++) { for (int j = 1; j <= W; j++) { fi[i][j] += fi[i][j-1]; } } for (int j = 0; j <= W; j++) { for (int i = 1; i <= H; i++) { fi[i][j] += fi[i-1][j]; } } for (int i = 0; i <= H; i++) { for (int j = 1; j <= W; j++) { fi[i][j] += fi[i][j-1]; } } for (int j = 0; j <= W; j++) { for (int i = 1; i <= H; i++) { fi[i][j] += fi[i-1][j]; } } int ans = 0; for (auto q : query) { int a = fi[q[0]][q[2]] + fi[q[1]][q[3]] - fi[q[0]][q[1]] - fi[q[2]][q[3]]; ans += q[4] - a > 0; } cout << ans << endl; }