結果

問題 No.60 魔法少女
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-24 18:54:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,381 ms / 5,000 ms
コード長 1,690 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 72,680 KB
最終ジャッジ日時 2024-07-07 17:30:00
合計ジャッジ時間 15,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
55,744 KB
testcase_01 AC 168 ms
55,624 KB
testcase_02 AC 165 ms
55,716 KB
testcase_03 AC 176 ms
55,816 KB
testcase_04 AC 1,181 ms
67,692 KB
testcase_05 AC 1,158 ms
68,184 KB
testcase_06 AC 1,381 ms
72,156 KB
testcase_07 AC 1,286 ms
70,756 KB
testcase_08 AC 1,079 ms
67,592 KB
testcase_09 AC 748 ms
60,596 KB
testcase_10 AC 1,320 ms
71,424 KB
testcase_11 AC 593 ms
58,512 KB
testcase_12 AC 979 ms
68,092 KB
testcase_13 AC 1,368 ms
72,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.HashSet;
import java.util.Scanner;
import java.util.TreeSet;

public class Main {
	static int N, K;
	static int[] X, Y, HP;
	static int[] AX, AY, W, H, D;
	
	public static int solve(){
		int[][] damage = new int[1001][1001];
		for (int y = 0; y < 1001; y++) {
			for (int x = 0; x < 1001; x++) {
				damage[y][x] = 0;
			}
		}
		
		for (int i = 0; i < K; i++) {
			int x = AX[i], y = AY[i];
			damage[y][x] += D[i];
			
			if(x + W[i] + 1 <= 1000)
			{
				damage[y][x+W[i]+1] += -1 * D[i];
				if(y+H[i]+1 <= 1000)
				{
					damage[y+H[i]+1][x+W[i]+1] += D[i];
				}
			}
			if(y+H[i]+1 <= 1000)
			{
				damage[y+H[i]+1][x] += -1 * D[i];
			}
		}
		
		for (int y = 0; y <= 1000; y++) {
			for (int x = 1; x <= 1000; x++) {
				damage[y][x] += damage[y][x-1];
			}
		}
		
		for (int x = 0; x <= 1000; x++) {
			for (int y = 1; y <= 1000; y++) {
				damage[y][x] += damage[y-1][x];
			}
		}
		
		int ret = 0;
		for (int i = 0; i < N; i++) {
			int delta = HP[i] - damage[Y[i]][X[i]];
			if(delta > 0) ret += delta;
		}
		
		System.out.println(ret);
		
		return 0;
	}
	
	public static void main(String[] args){
		Scanner S = new Scanner(System.in);
		
		N = S.nextInt();
		K = S.nextInt();
		
		X = new int[N];
		Y = new int[N];
		HP = new int[N];
		for (int i = 0; i < N; i++) {
			X[i] = S.nextInt() + 500;
			Y[i] = S.nextInt() + 500;
			HP[i] = S.nextInt();
		}
		
		AX = new int[K];
		AY = new int[K];
		W = new int[K];
		H = new int[K];
		D = new int[K];
		for (int i = 0; i < K; i++) {
			AX[i] = S.nextInt() + 500;
			AY[i] = S.nextInt() + 500;
			W[i] = S.nextInt();
			H[i] = S.nextInt();
			D[i] = S.nextInt();
		}
		
		solve();
	}
}
0