結果
問題 | No.60 魔法少女 |
ユーザー | syoken_desuka |
提出日時 | 2015-03-05 01:26:48 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 5,469 bytes |
コンパイル時間 | 2,302 ms |
コンパイル使用メモリ | 112,496 KB |
実行使用メモリ | 62,464 KB |
最終ジャッジ日時 | 2024-06-24 07:59:55 |
合計ジャッジ時間 | 5,327 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 104 ms
35,072 KB |
testcase_01 | AC | 102 ms
34,944 KB |
testcase_02 | AC | 105 ms
34,816 KB |
testcase_03 | AC | 103 ms
34,816 KB |
testcase_04 | AC | 270 ms
57,472 KB |
testcase_05 | AC | 294 ms
62,080 KB |
testcase_06 | RE | - |
testcase_07 | AC | 319 ms
60,672 KB |
testcase_08 | AC | 251 ms
59,904 KB |
testcase_09 | AC | 178 ms
57,088 KB |
testcase_10 | AC | 376 ms
62,464 KB |
testcase_11 | AC | 131 ms
42,752 KB |
testcase_12 | AC | 239 ms
60,288 KB |
testcase_13 | RE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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; } }