結果
問題 | No.60 魔法少女 |
ユーザー | tkzw_21 |
提出日時 | 2015-03-23 15:33:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 261 ms / 5,000 ms |
コード長 | 900 bytes |
コンパイル時間 | 1,284 ms |
コンパイル使用メモリ | 164,372 KB |
実行使用メモリ | 38,912 KB |
最終ジャッジ日時 | 2024-06-29 00:23:19 |
合計ジャッジ時間 | 4,853 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
38,784 KB |
testcase_01 | AC | 55 ms
38,784 KB |
testcase_02 | AC | 55 ms
38,784 KB |
testcase_03 | AC | 54 ms
38,784 KB |
testcase_04 | AC | 165 ms
38,784 KB |
testcase_05 | AC | 177 ms
38,912 KB |
testcase_06 | AC | 255 ms
38,912 KB |
testcase_07 | AC | 204 ms
38,784 KB |
testcase_08 | AC | 152 ms
38,912 KB |
testcase_09 | AC | 96 ms
38,784 KB |
testcase_10 | AC | 245 ms
38,784 KB |
testcase_11 | AC | 77 ms
38,784 KB |
testcase_12 | AC | 140 ms
38,912 KB |
testcase_13 | AC | 261 ms
38,912 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int INF = 1e9; const int MOD = 1e9+7; int main(void) { int N,K; cin >> N >> K; vector<vector<ll>> enemys(1510,vector<ll>(1510)); vector<vector<ll>> area(1510,vector<ll>(1510)); const int GETA = 500; for(int i=0;i<N;i++){ int x,y,hp;cin >> x >> y >> hp; enemys[y+GETA][x+GETA] += hp; } for(int i=0;i<K;i++){ int x,y,w,h,d;cin >> x >> y >> w >> h >> d; y += GETA; x += GETA; area[y][x] += d; area[y+h+1][x+w+1] += d; area[y+h+1][x] -= d; area[y][x+w+1] -= d; } for(int i=0;i<1510;i++){ for(int j=0;j<1510-1;j++){ area[i][j+1] += area[i][j]; } } for(int i=0;i<1510;i++){ for(int j=0;j<1510-1;j++){ area[j+1][i] += area[j][i]; } } ll ret = 0; for(int i=0;i<1510;i++){ for(int j=0;j<1510;j++){ ret += max(0LL,enemys[i][j] - area[i][j]); } } cout << ret << endl; return 0; }