結果

問題 No.1490 スライムと爆弾
ユーザー kakel-sankakel-san
提出日時 2024-06-27 23:14:05
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,609 bytes
コンパイル時間 13,291 ms
コンパイル使用メモリ 171,844 KB
実行使用メモリ 253,400 KB
最終ジャッジ日時 2024-06-27 23:14:27
合計ジャッジ時間 19,302 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,464 KB
testcase_01 WA -
testcase_02 AC 59 ms
30,720 KB
testcase_03 AC 58 ms
30,428 KB
testcase_04 WA -
testcase_05 AC 59 ms
30,848 KB
testcase_06 AC 58 ms
30,208 KB
testcase_07 AC 57 ms
30,464 KB
testcase_08 AC 59 ms
30,848 KB
testcase_09 WA -
testcase_10 AC 59 ms
30,464 KB
testcase_11 AC 58 ms
30,464 KB
testcase_12 AC 58 ms
30,592 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 58 ms
30,208 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 245 ms
90,008 KB
testcase_29 AC 248 ms
89,984 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (h, w, n, m) = (c[0], c[1], c[2], c[3]);
        var sl = NArr(n);
        var bb = NArr(m);
        var cum = new long[h + 1, w + 1];
        foreach (var b in bb)
        {
            var top = Math.Max(0, b[0] - b[2] - 1);
            var btm = Math.Min(h, b[0] + b[2]);
            var lft = Math.Max(0, b[1] - b[2] - 1);
            var rit = Math.Min(w, b[1] + b[2]);
            cum[top, lft] += b[3];
            cum[top, rit] -= b[3];
            cum[btm, lft] -= b[3];
            cum[btm, rit] += b[3];
        }
        for (var p = 0; p < 2; ++p)
        {
            for (var i = 0; i <= h; ++i) for (var j = 0; j < w; ++j)
            {
                cum[i, j + 1] += cum[i, j];
            }
            for (var i = 0; i < h; ++i) for (var j = 0; j <= w; ++j)
            {
                cum[i + 1, j] += cum[i, j];
            }
        }
        var ans = 0;
        foreach (var s in sl)
        {
            var dmg = cum[s[0] - 1, s[2] - 1] - cum[s[0] - 1, s[3]] - cum[s[1], s[2] - 1] + cum[s[1], s[3]];
            if (dmg < s[4]) ++ans;
        }
        WriteLine(ans);
    }
}
0