結果

問題 No.20 砂漠のオアシス
ユーザー mbanmban
提出日時 2017-04-27 01:56:50
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 6,080 bytes
コンパイル時間 2,557 ms
コンパイル使用メモリ 111,476 KB
実行使用メモリ 44,160 KB
最終ジャッジ日時 2023-08-03 08:14:12
合計ジャッジ時間 13,331 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
21,712 KB
testcase_01 AC 64 ms
21,740 KB
testcase_02 AC 65 ms
23,756 KB
testcase_03 AC 71 ms
21,700 KB
testcase_04 AC 72 ms
19,660 KB
testcase_05 AC 115 ms
24,172 KB
testcase_06 AC 103 ms
25,884 KB
testcase_07 AC 344 ms
24,028 KB
testcase_08 AC 145 ms
23,940 KB
testcase_09 AC 311 ms
23,916 KB
testcase_10 AC 63 ms
21,800 KB
testcase_11 AC 63 ms
21,704 KB
testcase_12 AC 98 ms
21,564 KB
testcase_13 AC 99 ms
21,732 KB
testcase_14 AC 1,419 ms
23,568 KB
testcase_15 AC 741 ms
24,844 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

public class Scanner
{
    private StreamReader Sr;

    private string[] S;
    private int Index;
    private const char Separator = ' ';

    public Scanner(Stream source)
    {
        Index = 0;
        S = new string[0];
        Sr = new StreamReader(source);
    }

    public Scanner() : this(Console.OpenStandardInput())
    {

    }

    private string[] Line()
    {
        return Sr.ReadLine().Split(Separator);
    }

    public string Next()
    {
        string result;
        if (Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
    public decimal NextDecimal()
    {
        return decimal.Parse(Next());
    }
    public string[] StringArray(int index = 0)
    {
        Next();
        Index = S.Length;
        return S.Skip(index).ToArray();
    }
    public int[] IntArray(int index = 0)
    {
        return StringArray(index).Select(int.Parse).ToArray();
    }
    public long[] LongArray(int index = 0)
    {
        return StringArray(index).Select(long.Parse).ToArray();
    }
    public bool EndOfStream
    {
        get { return Sr.EndOfStream; }
    }
}

public class PriortyQueue<T>
{
    private Comparison<T> Comparator;
    private List<T> L;
    public PriortyQueue(Comparison<T> comparator)
    {
        Clear();
        Comparator = comparator;
    }
    public PriortyQueue(PriortyQueue<T> queue)
    {
        L = queue.ToList();
        Comparator = queue.Comparator;
    }
    public void Add(T item)
    {
        int n = L.Count;
        L.Add(item);
        while (n > 0)
        {
            int i = (n - 1) / 2;
            if (Comparator(L[n], L[i]) > 0)
            {
                Swap(n, i);
            }
            n = i;
        }
    }
    public T Poll()
    {
        T ret = Peak();
        Pop();
        return ret;
    }
    public void Pop()
    {
        int n = L.Count - 1;
        L[0] = L[n];
        L.RemoveAt(n);
        for (int i = 0, j; (j = 2 * i + 1) < n;)
        {
            if ((j != n - 1) && (Comparator(L[j], L[j + 1]) < 0))
            {
                j++;
            }

            if (Comparator(L[i], L[j]) < 0)
            {
                Swap(i, j);
            }
            i = j;
        }
    }
    public T Peak()
    {
        return L[0];
    }
    public T[] ToArray()
    {
        return L.ToArray();
    }
    public List<T> ToList()
    {
        return L.ToList();
    }
    public void Clear()
    {
        L = new List<T>();
    }
    public int Size
    {
        get { return L.Count; }
    }
    public bool IsEmpty
    {
        get { return L.Count == 0; }
    }
    private void Swap(int a, int b)
    {
        T temp = L[a];
        L[a] = L[b];
        L[b] = temp;
    }
    public int Count { get { return L.Count; } }
}

struct Cell
{
    public int X, Y, Life;
    public Cell(int x, int y, int life)
    {
        X = x;
        Y = y;
        Life = life;
    }
}

class Magatro
{
    private int N, V, Ox, Oy;
    private int[][] L;

    private bool[,] B;
    private int[] Next = new int[] { 1, 0, -1, 0 };
    public void Solve()
    {
        var cin = new Scanner();
        N = cin.NextInt();
        V = cin.NextInt();
        Ox = cin.NextInt();
        Oy = cin.NextInt();
        L = new int[N][];
        for (int i = 0; i < N; i++)
        {
            L[i] = cin.IntArray();
        }

        var pq = new PriortyQueue<Cell>(Compara);

        pq.Add(new Cell(1, 1, V));
        B = new bool[N, N];
        int oLife = -1;
        while (pq.Count > 0)
        {
            Cell c = pq.Poll();
            B[c.Y - 1, c.X - 1] = true;

            if (c.Y == N && c.X == N)
            {
                Console.WriteLine("YES");
                return;
            }

            if (c.Y == Oy && c.X == Ox)
            {
                oLife = c.Life;
            }

            for (int i = 0; i < 4; i++)
            {
                int nextY = c.Y + Next[i];
                int nextX = c.X + Next[(i + 1) % 4];
                if (nextX < 1 || nextY < 1) continue;
                if (nextX > N || nextY > N) continue;
                if (B[nextY - 1, nextX - 1]) continue;
                int nextLife = c.Life - L[nextY - 1][nextX - 1];
                if (nextLife <= 0) continue;
                pq.Add(new Cell(nextX, nextY, nextLife));
            }
        }

        if (Ox == 0 && Oy == 0)
        {
            Console.WriteLine("NO");
            return;
        }

        pq = new PriortyQueue<Cell>(Compara);

        pq.Add(new Cell(Ox, Oy, oLife*2));
        B = new bool[N, N];
        while (pq.Count > 0)
        {
            Cell c = pq.Poll();
            B[c.Y - 1, c.X - 1] = true;

            if (c.Y == N && c.X == N)
            {
                Console.WriteLine("YES");
                return;
            }

            for (int i = 0; i < 4; i++)
            {
                int nextY = c.Y + Next[i];
                int nextX = c.X + Next[(i + 1) % 4];
                if (nextX < 1 || nextY < 1) continue;
                if (nextX > N || nextY > N) continue;
                if (B[nextY - 1, nextX - 1]) continue;
                int nextLife = c.Life - L[nextY - 1][nextX - 1];
                if (nextLife <= 0) continue;
                pq.Add(new Cell(nextX, nextY, nextLife));
            }
        }

        Console.WriteLine("NO");
    }

    private int Compara(Cell a, Cell b)
    {
        return a.Life.CompareTo(b.Life);
    }

}



0