結果

問題 No.34 砂漠の行商人
ユーザー 14番14番
提出日時 2016-04-03 18:16:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 894 ms / 5,000 ms
コード長 5,900 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 108,344 KB
実行使用メモリ 47,216 KB
最終ジャッジ日時 2023-09-10 19:23:45
合計ジャッジ時間 9,355 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
22,816 KB
testcase_01 AC 61 ms
20,880 KB
testcase_02 AC 64 ms
20,832 KB
testcase_03 AC 63 ms
22,792 KB
testcase_04 AC 86 ms
25,180 KB
testcase_05 AC 103 ms
27,788 KB
testcase_06 AC 69 ms
24,916 KB
testcase_07 AC 129 ms
28,496 KB
testcase_08 AC 169 ms
27,896 KB
testcase_09 AC 364 ms
37,448 KB
testcase_10 AC 270 ms
33,408 KB
testcase_11 AC 167 ms
29,180 KB
testcase_12 AC 94 ms
27,372 KB
testcase_13 AC 894 ms
45,180 KB
testcase_14 AC 790 ms
47,216 KB
testcase_15 AC 130 ms
27,972 KB
testcase_16 AC 130 ms
26,524 KB
testcase_17 AC 182 ms
30,752 KB
testcase_18 AC 66 ms
22,908 KB
testcase_19 AC 393 ms
38,604 KB
testcase_20 AC 508 ms
41,664 KB
testcase_21 AC 65 ms
22,936 KB
testcase_22 AC 316 ms
35,696 KB
testcase_23 AC 179 ms
25,884 KB
testcase_24 AC 525 ms
43,644 KB
testcase_25 AC 188 ms
28,496 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;
        // Console.WriteLine(DateTime.Now.ToString("HH:mm:ss.fff"));

        int[] inpt = Reader.GetInt(' ', true);
        int mapLength = inpt[0];
        int tairyoku = inpt[1];
        int startX = inpt[2] - 1;
        int startY = inpt[3] - 1;
        int goalX = inpt[4] - 1;
        int goalY = inpt[5] - 1;

        int[,] map = 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];
            }
        }

        List<CellState>[,] step = new List<CellState>[mapLength, mapLength];
        step[startY, startX] = new List<CellState>();
        step[startY, startX].Add(new CellState(tairyoku, 0));
        Queue<TaskItem> task = new Queue<TaskItem>();
        task.Enqueue(new TaskItem(startX, startY, 0, tairyoku));

        while (task.Count > 0)
        {
            TaskItem tsk = task.Dequeue();
            List<int[]> nextPosList = new List<int[]>();
            if (tsk.X > 0)
            {
                nextPosList.Add(new int[] { tsk.X - 1, tsk.Y });
            }
            if (tsk.X < mapLength - 1)
            {
                nextPosList.Add(new int[] { tsk.X + 1, tsk.Y });
            }
            if (tsk.Y > 0)
            {
                nextPosList.Add(new int[] { tsk.X, tsk.Y - 1 });
            }
            if (tsk.Y < mapLength - 1)
            {
                nextPosList.Add(new int[] { tsk.X, tsk.Y + 1 });
            }
            foreach (int[] nextPos in nextPosList)
            {
                int nextX = nextPos[0];
                int nextY = nextPos[1];

                int nextTairyoku = tsk.Tairyoku - map[nextY, nextX];
                if(nextTairyoku > 0) {
                    if (step[nextY, nextX] == null)
                    {
                        step[nextY, nextX] = new List<CellState>();
                    }

                    bool canAddTask = true;
                    int nextStep = tsk.Step + 1;
                    for(int i = step[nextY, nextX].Count - 1; i>=0; i--) {
                        CellState tmpCS = step[nextY, nextX][i];
                        if(tmpCS.Tairyoku >= nextTairyoku && tmpCS.Step <= nextStep) {
                            canAddTask = false;
                            break;
                        }
                    }
                    if(canAddTask) {
                        CellState newState = new CellState(nextTairyoku, nextStep);

                        for (int i = step[nextY, nextX].Count - 1; i >= 0; i--)
                        {
                            if (step[nextY, nextX][i].Step > nextStep)
                            {
                                break;
                            }
                            if (step[nextY, nextX][i].Step >= nextStep && step[nextY, nextX][i].Tairyoku <= nextTairyoku)
                            {
                                step[nextY, nextX].RemoveAt(i);
                            }
                        }

                        step[nextY, nextX].Add(newState);
                        if ((nextX != goalX || nextY != goalY))
                        {
                            TaskItem newTask = new TaskItem(nextX, nextY, nextStep, nextTairyoku);
                            task.Enqueue(newTask);
                        }
                    }
                }
            }
        }

        int ans = -1;

        if(step[goalY, goalX] != null) {
            step[goalY, goalX].Sort();

            ans = step[goalY, goalX][0].Step;
        }
        Console.WriteLine(ans);
        // Console.WriteLine(DateTime.Now.ToString("HH:mm:ss.fff"));

    }

    public class TaskItem
    {
        public int Step;
        public int Tairyoku;
        public int X;
        public int Y;
        public TaskItem(int x, int y, int step, int tairyoku)
        {
            this.X = x;
            this.Y = y;
            this.Step = step;
            this.Tairyoku = tairyoku;
        }

    }
    public class CellState:IComparable<CellState>
    {
        public int Tairyoku = 0;
        public int Step = 0;
        public CellState(int tairyoku, int step)
        {
            this.Tairyoku = tairyoku;
            this.Step = step;
        }

        public int CompareTo(CellState other)
        {
            if (this.Step < other.Step)
            {
                return -1;
            }
            if (this.Step > other.Step)
            {
                return 1;
            }
            return 0;
        }
    }

    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 = ' ', bool trim = false)
        {
            string inptStr = ReadLine();
            if (trim)
            {
                inptStr = inptStr.Trim();
            }
            string[] inpt = inptStr.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