結果

問題 No.60 魔法少女
ユーザー syoken_desukasyoken_desuka
提出日時 2015-03-05 01:26:48
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 5,469 bytes
コンパイル時間 2,977 ms
コンパイル使用メモリ 107,156 KB
実行使用メモリ 65,832 KB
最終ジャッジ日時 2023-09-06 13:25:13
合計ジャッジ時間 6,513 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
44,084 KB
testcase_01 AC 136 ms
42,160 KB
testcase_02 AC 136 ms
41,984 KB
testcase_03 AC 135 ms
40,020 KB
testcase_04 AC 292 ms
60,648 KB
testcase_05 AC 316 ms
65,780 KB
testcase_06 RE -
testcase_07 AC 344 ms
63,740 KB
testcase_08 AC 279 ms
65,184 KB
testcase_09 AC 206 ms
60,152 KB
testcase_10 AC 396 ms
65,832 KB
testcase_11 AC 168 ms
47,780 KB
testcase_12 AC 267 ms
63,896 KB
testcase_13 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using System.Numerics;
using sc = Scanner;

class Program
{
    static void Main(string[] args)
    {
        Solver solver = new Solver();
        solver.Solve();
#if DEBUG
        System.Console.WriteLine("続行するには何かキーを押してください...");
        System.Console.ReadKey();
#endif

    }
}

public class Solver
{
#region IGNORE_ME
    public Solver()
    {
        //こんすとらくたん きにしなくてよろしい
    }
#endregion IGNORE_ME

#region FIELD

#endregion FIELD

    public void Solve()
    {
        int n = sc.NextInt();
        int k = sc.NextInt();
        long[][] enemys = new long[n][];
        long[,] map = new long[1501, 1501]; // 500 ga center [1001] bunki wo rakuni
        long[,] imositaMap = new long[1501, 1501];
        for (int i = 0; i < n; i++)
        {
            enemys[i] = sc.NextLongArray();// 0x 1y 2hp
            enemys[i][0] += 500;//centering
            enemys[i][1] += 500;
        }
        for (int i = 0; i < k; i++)
        {
            int[] data = sc.NextIntArray();
            data[0] += 500;
            data[1] += 500;
            map[data[0], data[1]] += data[4];
            map[data[0] + data[2] +1, data[1]] -= data[4];
            map[data[0] , data[1] + data[3] + 1] -= data[4];
            map[data[0] + data[2] + 1, data[1] + data[3] + 1] += data[4];
        }

        for (int i = 0; i <1501; i++)
        {
            long tmp = 0;
            for (int j = 0; j < 1501; j++)
            {
                tmp += map[i, j];
                imositaMap[i, j] += tmp;
            }
        }
        for (int i = 0; i < 1501; i++)
        {
            long tmp = 0;
            for (int j = 0; j < 1501; j++)
            {
                tmp += imositaMap[j, i];
                imositaMap[j, i] = tmp;
            }
        }

        for (int i = 0; i < enemys.Length; i++)
        {
            long x = enemys[i][0];
            long y = enemys[i][1];

            enemys[i][2] = Math.Max(0, enemys[i][2] - imositaMap[x,y]);
        }

        long answer = 0;
        for (int i = 0; i < enemys.Length; i++)
        {
            answer += enemys[i][2];
        }
        Console.WriteLine(answer);
#if DEBUG
        Console.WriteLine("");//local check
#endif 
    }
}

/// <summary>
/// Java風のスキャナー,自作(某最速の人を参考) 自分の実装のせいか,バグってるっぽい バグが出たらO(n^3) n=100000 でTLE
/// </summary>
public static class Scanner
{
    public static string NextString()
    {
        string tmp = "";
        while (true)
        {
            int readData;
            string data;
            readData = Console.Read();
            if (readData == -1) //EOF
            {
                break;
            }
            data = char.ConvertFromUtf32(readData);
            if (data == " " || data == "\n")
            {
                break;
            }
                tmp += data;
        }
        return tmp;
    }
    public static int NextInt()
    {
        string tmp = "";
        while (true)
        {
            int readData;
            string data;
            readData = Console.Read();
            if (readData == -1) //EOF
            {
                break;
            }
            data = char.ConvertFromUtf32(readData);
            if (data == " " || data == "\n")
            {
                break;
            }
                tmp += data;
        }
        return int.Parse(tmp);
    }
    public static long NextLong()
    {
        string tmp = "";
        while (true)
        {
            int readData;
            string data;
            readData = Console.Read();
            if (readData == -1) //EOF
            {
                break;
            }
            data = char.ConvertFromUtf32(readData);
            if (data == " " || data == "\n")
            {
                break;
            }
                tmp += data;
        }
        return long.Parse(tmp);
    }
    public static double NextDouble()
    {
        string tmp = "";
        while (true)
        {
            int readData;
            string data;
            readData = Console.Read();
            if (readData == -1) //EOF
            {
                break;
            }
            data = char.ConvertFromUtf32(readData);
            if (data == " " || data == "\n")
            {
                break;
            }
                tmp += data;
        }
        return double.Parse(tmp);
    }

    public static string[] NextStrArray()
    {
        return Console.ReadLine().Split(' ');
    }
    public static int[] NextIntArray()
    {

        string[] s = NextStrArray();
        int[] a = new int[s.Length];
        for (int i = 0; i < a.Length; i++)
        {
            a[i] = int.Parse(s[i]);
        }
        return a;
    }
    public static long[] NextLongArray()
    {
        string[] s = NextStrArray();
        long[] a = new long[s.Length];
        for (int i = 0; i < a.Length; i++)
        {
            a[i] = long.Parse(s[i]);
        }
        return a;
    }
    public static double[] NextDoubleArray()
    {
        string[] s = NextStrArray();
        double[] a = new double[s.Length];
        for (int i = 0; i < a.Length; i++)
        {
            a[i] = double.Parse(s[i]);
        }
        return a;
    }
}
0