結果
問題 | No.20 砂漠のオアシス |
ユーザー | 4 |
提出日時 | 2015-10-29 10:43:43 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 6,890 bytes |
コンパイル時間 | 1,193 ms |
コンパイル使用メモリ | 115,148 KB |
実行使用メモリ | 28,084 KB |
最終ジャッジ日時 | 2024-10-13 05:29:20 |
合計ジャッジ時間 | 2,587 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | 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.Linq; class Program { static string InputPattern = "InputX"; static List<string> GetInputList() { var WillReturn = new List<string>(); if (InputPattern == "Input1") { WillReturn.Add("3 2 1 1 3 1"); WillReturn.Add("0 2 0"); WillReturn.Add("0 1 0"); WillReturn.Add("0 0 0"); //4 //遠回りすれば体力を減らさずに着くことができますが、移動回数6が必要です。 //(1,1)→(2,1)→(3,1) の順に歩くと移動回数2ですが、 //途中で死んでしまうためダメです。 //(1,1)→(1,2)→(2,2)→(3,2)→(3,1) の順に歩くのが、 //死なない範囲で最も早く着くことができます。 } else if (InputPattern == "Input2") { WillReturn.Add("4 25 1 1 4 4"); WillReturn.Add("0 1 3 3"); WillReturn.Add("1 4 1 5"); WillReturn.Add("2 2 7 8"); WillReturn.Add("6 7 4 9"); //-1 //どのような経路でも途中で死んでしまうため、次の街へ着くことができません } else if (InputPattern == "Input3") { WillReturn.Add("21 40 15 1 18 21"); WillReturn.Add("0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"); WillReturn.Add("9 4 3 9 0 4 4 3 0 8 7 0 2 2 2 3 8 1 2 1 2"); WillReturn.Add("2 5 6 3 4 9 1 2 2 6 6 8 0 1 1 0 9 8 4 6 3"); WillReturn.Add("6 5 0 7 9 9 7 2 9 4 3 0 9 7 5 9 0 4 1 9 5"); WillReturn.Add("3 9 2 1 8 4 7 9 8 0 3 9 5 1 2 1 2 5 9 8 1"); WillReturn.Add("0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"); WillReturn.Add("5 1 7 9 5 2 3 0 4 0 8 4 4 8 5 4 2 8 3 8 6"); WillReturn.Add("3 9 6 7 3 0 4 1 9 5 1 2 2 3 0 8 0 6 6 4 4"); WillReturn.Add("3 6 6 6 7 4 5 3 0 6 7 3 5 1 9 3 0 5 9 9 9"); WillReturn.Add("8 1 1 4 2 5 9 3 2 4 1 8 4 6 3 5 5 3 3 6 4"); WillReturn.Add("0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"); WillReturn.Add("5 5 7 7 9 2 8 4 5 6 4 6 8 2 7 3 5 8 5 2 4"); WillReturn.Add("9 0 7 7 0 4 1 6 1 9 1 5 0 1 6 5 2 6 6 6 5"); WillReturn.Add("3 9 7 7 2 6 3 7 1 5 3 8 9 5 6 3 4 8 7 3 4"); WillReturn.Add("8 9 1 0 3 9 4 3 9 1 4 8 1 0 5 9 4 3 6 1 3"); WillReturn.Add("0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"); WillReturn.Add("9 5 0 0 4 9 3 9 6 5 4 2 1 5 9 8 7 8 8 6 3"); WillReturn.Add("7 2 3 9 9 9 7 7 0 5 8 0 6 3 6 1 2 3 1 0 5"); WillReturn.Add("7 8 1 1 8 5 4 3 5 0 2 5 8 5 3 5 3 4 1 0 7"); WillReturn.Add("7 1 8 1 2 0 5 8 1 3 9 6 1 3 8 3 9 4 8 6 8"); WillReturn.Add("0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"); //33 } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } struct JyoutaiDef { internal int CurrX; internal int CurrY; internal int CurrV; internal int Level; //internal string Path; } struct MemoInfoDef { internal int V; internal int Level; } //34 砂漠の行商人 static void Main() { var sw = System.Diagnostics.Stopwatch.StartNew(); List<string> InputList = GetInputList(); int[] wkArr = { }; Action<string> SplitAct = (pStr) => wkArr = pStr.Split(' ').Select(X => int.Parse(X)).ToArray(); SplitAct(InputList[0]); int N = wkArr[0]; int V = wkArr[1]; int Sx = wkArr[2], Sy = wkArr[3]; int Gx = wkArr[4], Gy = wkArr[5]; int[,] SabakuArr = new int[N + 1, N + 1]; for (int Y = 1; Y <= N; Y++) { SplitAct(InputList[Y]); for (int X = 1; X <= N; X++) { SabakuArr[X, Y] = wkArr[X - 1]; } } var stk = new Stack<JyoutaiDef>(); JyoutaiDef WillPush; WillPush.CurrX = Sx; WillPush.CurrY = Sy; WillPush.CurrV = V; WillPush.Level = 0; //WillPush.Path = string.Format("({0},{1})", Sx, Sy); stk.Push(WillPush); //最小のLevel[X座標,Y座標,V]なメモ var MemoArr = new Nullable<int>[N + 1, N + 1, V + 1]; int AnswerLevel = int.MaxValue; bool FoundAnswer = false; while (stk.Count > 0) { JyoutaiDef Popped = stk.Pop(); //クリア処理 if (Popped.CurrX == Gx && Popped.CurrY == Gy) { FoundAnswer = true; if (AnswerLevel > Popped.Level) { AnswerLevel = Popped.Level; //Console.WriteLine("解候補を発見。Level={0}。Path={1}", // Popped.Level, Popped.Path); } continue; } Action<int, int> PushSyori = (pNewX, pNewY) => { if (pNewX < 1 || N < pNewX) return; if (pNewY < 1 || N < pNewY) return; WillPush.CurrX = pNewX; WillPush.CurrY = pNewY; WillPush.CurrV = Popped.CurrV - SabakuArr[pNewX, pNewY]; if (WillPush.CurrV <= 0) return; WillPush.Level = Popped.Level + 1; //WillPush.Path = Popped.Path + "-" + // string.Format("({0},{1})", pNewX, pNewY); //下限値枝切り if (FoundAnswer) { int Kyori = 0; Kyori += Math.Abs(Gx - WillPush.CurrX); Kyori += Math.Abs(Gy - WillPush.CurrY); if (AnswerLevel <= WillPush.Level + Kyori) return; } //メモ化探索 if (MemoArr[pNewX, pNewY, WillPush.CurrV] != null) { if (MemoArr[pNewX, pNewY, WillPush.CurrV] <= WillPush.Level) return; } MemoArr[pNewX, pNewY, WillPush.CurrV] = WillPush.Level; stk.Push(WillPush); }; //ゴールまでのマンハッタン距離 int GoalKyori = Math.Abs(Gx - Popped.CurrX) + Math.Abs(Gy - Popped.CurrY); if (GoalKyori > 1) { PushSyori(Popped.CurrX, Popped.CurrY + 1); PushSyori(Popped.CurrX + 1, Popped.CurrY); PushSyori(Popped.CurrX, Popped.CurrY - 1); PushSyori(Popped.CurrX - 1, Popped.CurrY); } else PushSyori(Gx, Gy); } Console.WriteLine(FoundAnswer ? AnswerLevel : -1); //Console.WriteLine("経過時間={0}", sw.Elapsed); } }