結果

問題 No.60 魔法少女
ユーザー goodbatongoodbaton
提出日時 2015-07-29 22:51:12
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,166 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 73,096 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-07-17 22:23:59
合計ジャッジ時間 4,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
8,576 KB
testcase_01 AC 9 ms
8,704 KB
testcase_02 AC 8 ms
8,576 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |     scanf("%d%d",&n,&k);
      |     ~~~~~^~~~~~~~~~~~~~
main.cpp:31:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   31 |         scanf("%d%d%d",&x[i],&y[i],&hp[i]);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:34:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   34 |         scanf("%d%d%d%d%d",&ax,&ay,&w,&h,&d);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <cstring>

typedef long long ll;
using namespace std;

#define mod 1000003
#define INF 10000000
#define LLINF 2000000000000000000LL

#define SIZE 100000

int main(){
    int n,k,x[SIZE],y[SIZE],hp[SIZE],ax,ay,w,h,d,ans=0;
    int mm[1010][1010]={0};
    
    
    scanf("%d%d",&n,&k);
    
    for(int i=0;i<n;i++)
        scanf("%d%d%d",&x[i],&y[i],&hp[i]);
    
    for(int i=0;i<k;i++){
        scanf("%d%d%d%d%d",&ax,&ay,&w,&h,&d);
        
        mm[ax+500][ay+500]+=d;
        mm[ax+500][ay+h+1+500]-=d;
        mm[ax+w+1+500][ay+500]-=d;
        mm[ax+w+1+500][ay+h+1+500]+=d;
    }
    
    for(int i=0;i<1001;i++){
        for(int j=0;j<1001;j++){
            mm[i][j+1]+=mm[i][j];
        }
    }
    
    for(int i=0;i<1001;i++){
        for(int j=0;j<1001;j++){
            mm[j+1][i]+=mm[j][i];
        }
    }
    
    for(int i=0;i<n;i++){
        ans+=max(0,hp[i]-mm[x[i]+500][y[i]+500]);
    }
    
    printf("%d\n",ans);
    
    return 0;
}
0