結果

問題 No.1490 スライムと爆弾
ユーザー kakel-sankakel-san
提出日時 2024-06-27 23:17:53
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 2,268 bytes
コンパイル時間 9,390 ms
コンパイル使用メモリ 165,668 KB
実行使用メモリ 255,076 KB
最終ジャッジ日時 2024-06-27 23:18:10
合計ジャッジ時間 15,578 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,464 KB
testcase_01 AC 61 ms
30,336 KB
testcase_02 AC 63 ms
30,976 KB
testcase_03 AC 62 ms
30,720 KB
testcase_04 AC 64 ms
30,848 KB
testcase_05 AC 63 ms
31,104 KB
testcase_06 AC 59 ms
30,720 KB
testcase_07 AC 58 ms
30,464 KB
testcase_08 AC 59 ms
30,592 KB
testcase_09 AC 58 ms
30,592 KB
testcase_10 AC 57 ms
30,464 KB
testcase_11 AC 57 ms
30,164 KB
testcase_12 AC 57 ms
30,464 KB
testcase_13 AC 214 ms
71,872 KB
testcase_14 AC 223 ms
76,032 KB
testcase_15 AC 155 ms
64,896 KB
testcase_16 AC 187 ms
67,072 KB
testcase_17 AC 146 ms
60,452 KB
testcase_18 AC 230 ms
76,144 KB
testcase_19 AC 216 ms
74,540 KB
testcase_20 AC 194 ms
71,936 KB
testcase_21 AC 131 ms
56,960 KB
testcase_22 AC 212 ms
68,736 KB
testcase_23 AC 58 ms
30,464 KB
testcase_24 AC 59 ms
30,332 KB
testcase_25 AC 269 ms
89,216 KB
testcase_26 AC 267 ms
89,440 KB
testcase_27 AC 274 ms
89,344 KB
testcase_28 AC 249 ms
89,984 KB
testcase_29 AC 241 ms
90,068 KB
testcase_30 AC 386 ms
255,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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 = 0L;
            if (s[0] > 1 && s[2] > 1) dmg += cum[s[0] - 2, s[2] - 2];
            if (s[0] > 1) dmg -= cum[s[0] - 2, s[3] - 1];
            if (s[2] > 1) dmg -= cum[s[1] - 1, s[2] - 2];
            dmg += cum[s[1] - 1, s[3] - 1];
            if (dmg < s[4]) ++ans;
        }
        WriteLine(ans);
    }
    static void DebugTable<T>(T[,] table)
    {
        Console.WriteLine("{");
        for (var i = 0; i < table.GetLength(0); ++i)
        {
            var s = i == 0 ? "{" : " ";
            for (var j = 0; j < table.GetLength(1); ++j)
            {
                s += j > 0 ? ", " : "";
                s += table[i, j].ToString();
            }
            s += i == table.GetLength(0) - 1 ? "}" : "";
            Console.WriteLine(s);
        }
        Console.WriteLine("}");
    }
}
0