結果
問題 | No.60 魔法少女 |
ユーザー | ttkkggww |
提出日時 | 2022-04-09 01:00:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 84 ms / 5,000 ms |
コード長 | 1,167 bytes |
コンパイル時間 | 3,872 ms |
コンパイル使用メモリ | 263,796 KB |
実行使用メモリ | 27,264 KB |
最終ジャッジ日時 | 2024-05-06 10:28:06 |
合計ジャッジ時間 | 5,858 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 16 ms
21,248 KB |
testcase_01 | AC | 15 ms
21,120 KB |
testcase_02 | AC | 16 ms
21,248 KB |
testcase_03 | AC | 19 ms
21,248 KB |
testcase_04 | AC | 55 ms
24,320 KB |
testcase_05 | AC | 56 ms
24,448 KB |
testcase_06 | AC | 82 ms
27,008 KB |
testcase_07 | AC | 65 ms
25,344 KB |
testcase_08 | AC | 49 ms
23,680 KB |
testcase_09 | AC | 31 ms
22,144 KB |
testcase_10 | AC | 78 ms
26,624 KB |
testcase_11 | AC | 23 ms
21,376 KB |
testcase_12 | AC | 45 ms
23,424 KB |
testcase_13 | AC | 84 ms
27,264 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; using ll = long long; ll n,k; ll sum[1505][1505]; vector<ll> x,y,hp,ax,ay,w,h,d; void solve(){ for(ll i = 0;i<k;i++){ //cerr<<d[i]<<endl; sum[ax[i]+500][ay[i]+500] -=d[i]; sum[ax[i]+500+w[i]+1][ay[i]+500] +=d[i]; sum[ax[i]+500][ay[i]+500+h[i]+1] +=d[i]; sum[ax[i]+500+w[i]+1][ay[i]+500+h[i]+1] -= d[i]; } for(ll i = 0;i<1505-1;i++){ for(ll j = 0;j<1505;j++){ sum[i+1][j] += sum[i][j]; } } for(ll i = 0;i<1505;i++){ for(ll j = 0;j<1505-1;j++){ sum[i][j+1] += sum[i][j]; } } ll ans = 0; for(ll i = 0;i<n;i++){ ans += max(0ll,sum[x[i]+500][y[i]+500]+hp[i]); //cout<<sum[x[i]+500][y[i]+500]<<' '<<hp[i]<<endl; } /* for(int i = 490;i<=510;i++){ for(int j = 490;j<=510;j++){ cout<<sum[i][j]<<' '; } cout<<endl; } */ cout<<ans<<endl; } signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cin >> n >> k; x = y = hp = vector<ll>(n); ax = ay = w = h = d = vector<ll>(k); for(ll i = 0;i<n;i++){ cin >> x[i] >> y[i] >> hp[i]; } for(ll i = 0;i<k;i++){ cin >> ax[i] >> ay[i] >> w[i] >> h[i]>>d[i]; } solve(); }