結果
問題 | No.60 魔法少女 |
ユーザー | koyopro |
提出日時 | 2015-09-30 18:10:51 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 877 bytes |
コンパイル時間 | 1,749 ms |
コンパイル使用メモリ | 160,504 KB |
実行使用メモリ | 24,704 KB |
最終ジャッジ日時 | 2024-07-19 18:12:19 |
合計ジャッジ時間 | 5,949 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
11,904 KB |
testcase_01 | AC | 13 ms
11,904 KB |
testcase_02 | AC | 14 ms
12,032 KB |
testcase_03 | AC | 19 ms
19,072 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 39 ms
23,008 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define REP(i, n) for(int i=0; i<(n); i++) #define FOR(i, a, b) for(int i=(a);i<(b);i++) #define MAX 2000 int N,K; int M[MAX][MAX]; int P[MAX][MAX]; struct enemy { int x, y, hp; }; signed main() { cin >> N >> K; vector<enemy> es(N); REP(i,N) { cin >> es[i].x >> es[i].y >> es[i].hp; es[i].x += 500; es[i].y += 500; } int x, y, W, H, D; REP(i,K) { cin >> x >> y >> W >> H >> D; x += 500; y += 500; REP(w,W+1) { M[x+w][y] += D; M[x+w][y+H+1] -= D; } } FOR(x,1,1100) { FOR(y,1,1100) { P[x][y] = M[x][y] + ((y > 0) ? P[x][y-1] : 0); } } int remain = 0; for (enemy e : es) { remain += max(0, e.hp - P[e.x][e.y]); } cout << remain << endl; return 0; }