結果
問題 | No.60 魔法少女 |
ユーザー | karaitarako |
提出日時 | 2018-02-21 20:51:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 220 ms / 5,000 ms |
コード長 | 1,139 bytes |
コンパイル時間 | 1,325 ms |
コンパイル使用メモリ | 159,848 KB |
実行使用メモリ | 34,512 KB |
最終ジャッジ日時 | 2024-09-19 10:25:08 |
合計ジャッジ時間 | 4,017 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
23,160 KB |
testcase_01 | AC | 19 ms
23,652 KB |
testcase_02 | AC | 18 ms
24,048 KB |
testcase_03 | AC | 21 ms
32,672 KB |
testcase_04 | AC | 122 ms
33,992 KB |
testcase_05 | AC | 132 ms
33,092 KB |
testcase_06 | AC | 204 ms
34,512 KB |
testcase_07 | AC | 155 ms
33,624 KB |
testcase_08 | AC | 110 ms
33,624 KB |
testcase_09 | AC | 59 ms
34,260 KB |
testcase_10 | AC | 190 ms
33,492 KB |
testcase_11 | AC | 42 ms
33,500 KB |
testcase_12 | AC | 103 ms
34,000 KB |
testcase_13 | AC | 220 ms
32,840 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int lengh_max = 1502; 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; }