結果
問題 | No.60 魔法少女 |
ユーザー | fura |
提出日時 | 2020-06-07 12:44:53 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 128 ms / 5,000 ms |
コード長 | 632 bytes |
コンパイル時間 | 2,617 ms |
コンパイル使用メモリ | 193,464 KB |
最終ジャッジ日時 | 2025-01-10 23:46:47 |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
19,456 KB |
testcase_01 | AC | 29 ms
19,456 KB |
testcase_02 | AC | 32 ms
19,200 KB |
testcase_03 | AC | 33 ms
19,456 KB |
testcase_04 | AC | 82 ms
19,712 KB |
testcase_05 | AC | 79 ms
20,096 KB |
testcase_06 | AC | 122 ms
19,968 KB |
testcase_07 | AC | 98 ms
19,968 KB |
testcase_08 | AC | 72 ms
19,840 KB |
testcase_09 | AC | 45 ms
19,712 KB |
testcase_10 | AC | 122 ms
19,968 KB |
testcase_11 | AC | 40 ms
19,712 KB |
testcase_12 | AC | 64 ms
19,840 KB |
testcase_13 | AC | 128 ms
20,224 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | int n,k; scanf("%d%d",&n,&k); | ~~~~~^~~~~~~~~~~~~~ main.cpp:10:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | rep(i,n) scanf("%d%d%d",&x[i],&y[i],&hp[i]), x[i]+=1000, y[i]+=1000; | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:14:39: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | int ax,ay,w,h,d; scanf("%d%d%d%d%d",&ax,&ay,&w,&h,&d); ax+=1000; ay+=1000; | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; int main(){ int n,k; scanf("%d%d",&n,&k); vector<int> x(n),y(n),hp(n); rep(i,n) scanf("%d%d%d",&x[i],&y[i],&hp[i]), x[i]+=1000, y[i]+=1000; static int sum[2002][2002]; rep(i,k){ int ax,ay,w,h,d; scanf("%d%d%d%d%d",&ax,&ay,&w,&h,&d); ax+=1000; ay+=1000; sum[ay][ax]+=d; sum[ay][ax+w+1]-=d; sum[ay+h+1][ax]-=d; sum[ay+h+1][ax+w+1]+=d; } rep(i,2002) rep(j,2001) sum[i][j+1]+=sum[i][j]; rep(i,2001) rep(j,2002) sum[i+1][j]+=sum[i][j]; int ans=0; rep(i,n) ans+=max(hp[i]-sum[y[i]][x[i]],0); printf("%d\n",ans); return 0; }