結果
問題 | No.60 魔法少女 |
ユーザー | EmKjp |
提出日時 | 2015-03-21 15:08:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 92 ms / 5,000 ms |
コード長 | 1,371 bytes |
コンパイル時間 | 629 ms |
コンパイル使用メモリ | 82,000 KB |
実行使用メモリ | 20,480 KB |
最終ジャッジ日時 | 2024-06-28 23:54:17 |
合計ジャッジ時間 | 2,147 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 16 ms
19,456 KB |
testcase_01 | AC | 15 ms
19,328 KB |
testcase_02 | AC | 16 ms
19,456 KB |
testcase_03 | AC | 17 ms
19,456 KB |
testcase_04 | AC | 56 ms
19,456 KB |
testcase_05 | AC | 58 ms
20,480 KB |
testcase_06 | AC | 92 ms
20,224 KB |
testcase_07 | AC | 69 ms
20,096 KB |
testcase_08 | AC | 49 ms
19,968 KB |
testcase_09 | AC | 30 ms
19,456 KB |
testcase_10 | AC | 81 ms
20,352 KB |
testcase_11 | AC | 23 ms
19,584 KB |
testcase_12 | AC | 44 ms
20,096 KB |
testcase_13 | AC | 91 ms
20,480 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:39:19: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 39 | FOR(i,N) scanf("%d%d%d",&X[i],&Y[i],&HP[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:43:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 43 | scanf("%d%d%d%d%d",&ax,&ay,&w,&h,&d); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<iostream> #include<sstream> #include<cstdio> #include<cstring> #include<algorithm> #include<string> #include<vector> #include<cmath> #include<set> #include<map> #include<stack> #include<queue> #include<numeric> #include<functional> #include<complex> using namespace std; #define BET(a,b,c) ((a)<=(b)&&(b)<(c)) #define FOR(i,n) for(int i=0,i##_end=(int(n));i<i##_end;i++) #define SZ(x) (int)(x.size()) #define ALL(x) (x).begin(),(x).end() #define MP make_pair #define FOR_EACH(it,v) for(__typeof(v.begin()) it=v.begin(),it_end=v.end() ; it != it_end ; it++) typedef vector<int> VI; typedef vector<VI> VVI; const int MAXN = 100000+5; int X[MAXN]; int Y[MAXN]; int HP[MAXN]; const int offset = 500; int D[2011][2011]; int main() { int N,K; cin>>N>>K; FOR(i,N) scanf("%d%d%d",&X[i],&Y[i],&HP[i]); memset(D , 0 , sizeof(D)); FOR(_,K){ int ax,ay,w,h,d; scanf("%d%d%d%d%d",&ax,&ay,&w,&h,&d); ax += offset; ay += offset; D[ay][ax]+=d; D[ay+h+1][ax]-=d; D[ay][ax+w+1]-=d; D[ay+h+1][ax+w+1]+=d; } FOR(i,1010) FOR(j,1010) D[i][j+1] += D[i][j]; FOR(i,1010) FOR(j,1010) D[j+1][i] += D[j][i]; long long ans = 0 ; FOR(i,N){ long long remain = HP[i] - D[Y[i]+offset][X[i]+offset]; if(remain > 0) ans += remain; } cout<<ans<<endl; return 0; }