結果
問題 | No.60 魔法少女 |
ユーザー | karaitarako |
提出日時 | 2018-02-21 20:49:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,139 bytes |
コンパイル時間 | 1,298 ms |
コンパイル使用メモリ | 158,632 KB |
実行使用メモリ | 19,328 KB |
最終ジャッジ日時 | 2024-09-19 10:18:55 |
合計ジャッジ時間 | 4,266 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
11,392 KB |
testcase_01 | AC | 8 ms
11,392 KB |
testcase_02 | AC | 9 ms
11,392 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const int lengh_max = 1009; long long int enemy[lengh_max][lengh_max]; long long int imos[lengh_max][lengh_max]; int main() { int n,k; cin >> n >> k; for(int i=0; i<n; i++){ int x,y,hp; cin >> x >> y >> hp; enemy[x+500][y+500] = hp; } for(int i=0; i<k; i++){ int ax,ay,w,h,d; cin >> ax >> ay >> w >> h >> d; imos[ax+500][ay+500] += d; imos[ax+500+w+1][ay+500] += -d; imos[ax+500][ay+500+h+1] += -d; imos[ax+500+w+1][ay+500+h+1] += d; } for(int i=0; i<lengh_max; i++){ for(int j=1; j<lengh_max; j++){ imos[i][j] += imos[i][j-1]; } } for(int j=0; j<lengh_max; j++){ for(int i=1; i<lengh_max; i++){ imos[i][j] += imos[i-1][j]; } } long long int ans = 0; for(int i=0; i<lengh_max; i++){ for(int j=0; j<lengh_max; j++){ if(enemy[i][j] != 0 && enemy[i][j] > imos[i][j]){ ans += enemy[i][j] - imos[i][j]; } } } cout << ans << endl; return 0; }