結果

問題 No.20 砂漠のオアシス
ユーザー 14番14番
提出日時 2016-04-02 20:45:23
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,271 bytes
コンパイル時間 1,021 ms
コンパイル使用メモリ 112,948 KB
実行使用メモリ 50,296 KB
最終ジャッジ日時 2024-04-21 06:52:29
合計ジャッジ時間 5,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,972 KB
testcase_01 AC 27 ms
25,952 KB
testcase_02 AC 26 ms
21,944 KB
testcase_03 AC 31 ms
26,076 KB
testcase_04 AC 59 ms
30,348 KB
testcase_05 AC 561 ms
46,728 KB
testcase_06 WA -
testcase_07 AC 635 ms
48,424 KB
testcase_08 AC 69 ms
26,576 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 24 ms
21,812 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 72 ms
30,224 KB
testcase_15 AC 57 ms
30,332 KB
testcase_16 AC 118 ms
32,032 KB
testcase_17 WA -
testcase_18 AC 103 ms
31,528 KB
testcase_19 WA -
testcase_20 AC 41 ms
30,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Text;
class Program
{
    public void Proc()
    {
        Reader.IsDebug = false;
        int[] inpt = Reader.GetInt();

        int mapLength = inpt[0];
        int maxTairyoku = inpt[1];
        int oasisX = inpt[2] - 1;
        int oasisY = inpt[3] - 1;

        int[,] map = new int[mapLength, mapLength];

        int[,] step = new int[mapLength, mapLength];

        for (int i = 0; i < mapLength; i++)
        {
            inpt = Reader.GetInt();
            for (int j = 0; j < mapLength; j++)
            {
                map[i, j] = inpt[j];
            }
        }

        step[0, 0] = maxTairyoku;
        Queue<int[]> task = new Queue<int[]>();
        task.Enqueue(new int[] { 0, 0 });
        while (task.Count > 0)
        {
            int[] pos = task.Dequeue();
            int x = pos[0];
            int y = pos[1];

            List<int[]> nextPos = new List<int[]>();
            if (x > 0)
            {
                nextPos.Add(new int[] { x - 1, y });
            }
            if (x < mapLength - 1)
            {
                nextPos.Add(new int[] { x + 1, y });
            }
            if (y > 0)
            {
                nextPos.Add(new int[] { x, y - 1 });
            }
            if (y < mapLength - 1)
            {
                nextPos.Add(new int[] { x, y + 1 });
            }
            int nowHP = step[y, x];
            foreach (int[] nextP in nextPos)
            {
                int nextX = nextP[0];
                int nextY = nextP[1];
                if (map[nextY, nextX] < nowHP)
                {
                    int nextHp = nowHP - map[nextY, nextX];
                    if (nextX == oasisX && nextY == oasisY)
                    {
                        nextHp *= 2;
                    }
                    if (nextHp > step[nextY, nextX])
                    {
                        step[nextY, nextX] = nextHp;
                        task.Enqueue(new int[] { nextX, nextY });
                    }
                }
            }
        }
        if (step[mapLength - 1, mapLength - 1] > 0)
        {
            Console.WriteLine("YES");
        }
        else
        {
            Console.WriteLine("NO");
        }


    }

    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"
 



 
";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
        public static int[] GetInt(char delimiter = ' ')
        {
            string[] inpt = ReadLine().Split(delimiter);
            int[] ret = new int[inpt.Length];
            for (int i = 0; i < inpt.Length; i++)
            {
                ret[i] = int.Parse(inpt[i]);
            }
            return ret;
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0