結果

問題 No.60 魔法少女
ユーザー tentententen
提出日時 2021-11-10 10:40:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 398 ms / 5,000 ms
コード長 2,102 bytes
コンパイル時間 2,661 ms
コンパイル使用メモリ 77,596 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-11-20 19:56:18
合計ジャッジ時間 7,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
45,780 KB
testcase_01 AC 87 ms
45,640 KB
testcase_02 AC 86 ms
45,576 KB
testcase_03 AC 87 ms
45,616 KB
testcase_04 AC 325 ms
50,836 KB
testcase_05 AC 320 ms
54,324 KB
testcase_06 AC 394 ms
54,232 KB
testcase_07 AC 352 ms
51,980 KB
testcase_08 AC 278 ms
49,872 KB
testcase_09 AC 223 ms
49,740 KB
testcase_10 AC 371 ms
52,256 KB
testcase_11 AC 177 ms
45,552 KB
testcase_12 AC 264 ms
50,064 KB
testcase_13 AC 398 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] xs = new int[n];
        int[] ys = new int[n];
        int[] hs = new int[n];
        for (int i = 0; i < n; i++) {
            xs[i] = sc.nextInt() + 501;
            ys[i] = sc.nextInt() + 501;
            hs[i] = sc.nextInt();
        }
        int[][] imos = new int[1003][1003];
        for (int i = 0; i < k; i++) {
            int x = sc.nextInt() + 501;
            int y = sc.nextInt() + 501;
            int w = sc.nextInt();
            int h = sc.nextInt();
            int d = sc.nextInt();
            imos[x][y] += d;
            imos[Math.min(x + w + 1, 1002)][y] -= d;
            imos[x][Math.min(y + h + 1, 1002)] -= d;
            imos[Math.min(x + w + 1, 1002)][Math.min(y + h + 1, 1002)] += d;
        }
        for (int i = 1; i < 1003; i++) {
            for (int j = 1; j < 1003; j++) {
                imos[i][j] += imos[i - 1][j] + imos[i][j - 1] - imos[i - 1][j - 1];
            }
        }
        long ans = 0;
        for (int i = 0; i < n; i++) {
            ans += Math.max(0, hs[i] - imos[xs[i]][ys[i]]);
        }
        System.out.println(ans);
    }
    
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0