結果

問題 No.60 魔法少女
ユーザー scachescache
提出日時 2014-11-17 07:42:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,129 ms / 5,000 ms
コード長 1,496 bytes
コンパイル時間 3,401 ms
コンパイル使用メモリ 80,548 KB
実行使用メモリ 64,052 KB
最終ジャッジ日時 2025-01-02 16:33:51
合計ジャッジ時間 14,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
49,236 KB
testcase_01 AC 139 ms
49,304 KB
testcase_02 AC 142 ms
49,316 KB
testcase_03 AC 146 ms
49,516 KB
testcase_04 AC 921 ms
62,196 KB
testcase_05 AC 973 ms
63,144 KB
testcase_06 AC 1,124 ms
63,504 KB
testcase_07 AC 1,029 ms
63,380 KB
testcase_08 AC 857 ms
62,996 KB
testcase_09 AC 560 ms
56,684 KB
testcase_10 AC 1,100 ms
63,644 KB
testcase_11 AC 472 ms
53,408 KB
testcase_12 AC 821 ms
64,052 KB
testcase_13 AC 1,129 ms
64,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

/**
 * yukicoder no.60 魔法少女 
 * @author scache
 *
 */
public class Main60 {
	public static void main(String[] args) {
		Main60 p = new Main60();
	}

	public Main60() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int[] x = new int[n];
		int[] y = new int[n];
		int[] hp =new int[n];
		for(int i=0;i<n;i++){
			x[i] = sc.nextInt()+500;
			y[i] = sc.nextInt()+500;
			hp[i] = sc.nextInt();
		}
		
		solve(n, k, x, y, hp, sc);
	}

	private final int MAX_W =1001;
	private final int MAX_H =1001;
	public void solve(int n, int k, int[] x, int[] y, int[] hp, Scanner sc) {
		int[][] field = new int[MAX_W][MAX_H];
		for(int i=0;i<k;i++){
			int ax = sc.nextInt()+500;
			int ay = sc.nextInt()+500;
			int w = sc.nextInt()+1;
			int h = sc.nextInt()+1;
			int d = sc.nextInt();
			
			field[ax][ay] += d;
			if(ax+w < MAX_W && ay+h < MAX_H)
				field[ax+w][ay+h] += d;
			if(ax+w < MAX_W)
				field[ax+w][ay] -= d;
			if(ay+h < MAX_H)
				field[ax][ay+h] -= d;
		}
		
		for(int i=0;i<MAX_W-1;i++){
			for(int j=0;j<MAX_H;j++){
				field[i+1][j] += field[i][j];
			}
		}
		
		for(int i=0;i<MAX_W;i++){
			for(int j=0;j<MAX_H-1;j++){
				field[i][j+1] += field[i][j];
			}
		}
		
		int res = 0;
		for(int i=0;i<x.length;i++){
			res += Math.max(0, hp[i]-field[x[i]][y[i]]);
		}
		
		
		System.out.println(res);
		
		
	}

	
}
0