結果
問題 | No.34 砂漠の行商人 |
ユーザー | AreTrash |
提出日時 | 2016-08-31 06:37:16 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 3,312 ms / 5,000 ms |
コード長 | 3,191 bytes |
コンパイル時間 | 965 ms |
コンパイル使用メモリ | 108,416 KB |
実行使用メモリ | 80,640 KB |
最終ジャッジ日時 | 2024-06-28 10:32:48 |
合計ジャッジ時間 | 15,194 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
17,792 KB |
testcase_01 | AC | 26 ms
17,792 KB |
testcase_02 | AC | 28 ms
17,920 KB |
testcase_03 | AC | 26 ms
17,912 KB |
testcase_04 | AC | 57 ms
18,944 KB |
testcase_05 | AC | 58 ms
19,200 KB |
testcase_06 | AC | 29 ms
17,920 KB |
testcase_07 | AC | 82 ms
20,096 KB |
testcase_08 | AC | 96 ms
20,992 KB |
testcase_09 | AC | 979 ms
41,216 KB |
testcase_10 | AC | 89 ms
20,992 KB |
testcase_11 | AC | 1,570 ms
77,056 KB |
testcase_12 | AC | 45 ms
19,072 KB |
testcase_13 | AC | 3,312 ms
80,640 KB |
testcase_14 | AC | 2,488 ms
67,712 KB |
testcase_15 | AC | 32 ms
18,252 KB |
testcase_16 | AC | 143 ms
22,528 KB |
testcase_17 | AC | 29 ms
18,312 KB |
testcase_18 | AC | 37 ms
17,920 KB |
testcase_19 | AC | 687 ms
37,248 KB |
testcase_20 | AC | 1,263 ms
49,792 KB |
testcase_21 | AC | 30 ms
18,648 KB |
testcase_22 | AC | 43 ms
20,480 KB |
testcase_23 | AC | 31 ms
18,560 KB |
testcase_24 | AC | 1,744 ms
57,728 KB |
testcase_25 | AC | 99 ms
22,016 KB |
コンパイルメッセージ
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.IO; namespace No34{ public class Program{ public static void Main(string[] args){ var sr = new StreamReader(); //--------------------------------- var N = sr.Next<int>(); var V = sr.Next<int>(); var Sx = sr.Next<int>() - 1; var Sy = sr.Next<int>() - 1; var Gx = sr.Next<int>() - 1; var Gy = sr.Next<int>() - 1; var L = sr.Next<int>(N, N); Func<int, int, bool> isInside = (x, y) => 0 <= x && x < N && 0 <= y && y < N; var dx = new[]{0, 1, 0, -1}; var dy = new[]{1, 0, -1, 0}; var dist = new int[V + 1, N, N]; var que = new Queue<int>(); dist[V, Sx, Sy] = 1; que.Enqueue(V); que.Enqueue(Sx); que.Enqueue(Sy); var res = 0; while(que.Count > 0){ var v = que.Dequeue(); var x = que.Dequeue(); var y = que.Dequeue(); for(var i = 0; i < 4; i++){ var nx = x + dx[i]; var ny = y + dy[i]; if(isInside(nx, ny)){ var nv = v - L[ny][nx]; if(nv <= 0) continue; if(dist[nv, nx, ny] != 0 && dist[nv, nx, ny] <= dist[v, x, y] + 1) continue; que.Enqueue(nv); que.Enqueue(nx); que.Enqueue(ny); dist[nv, nx, ny] = dist[v, x, y] + 1; if(nx == Gx && ny == Gy){ res = dist[nv, nx, ny]; goto End; } } } } End: Console.WriteLine(res - 1); //--------------------------------- } } public class StreamReader{ private readonly char[] _c = {' '}; private int _index = -1; private string[] _input = new string[0]; public T Next<T>(){ if(_index == _input.Length - 1){ _index = -1; while(true){ string rl = Console.ReadLine(); if(rl == null){ if(typeof(T).IsClass) return default(T); return (T)typeof(T).GetField("MinValue").GetValue(null); } if(rl != ""){ _input = rl.Split(_c, StringSplitOptions.RemoveEmptyEntries); break; } } } return (T)Convert.ChangeType(_input[++_index], typeof(T), System.Globalization.CultureInfo.InvariantCulture); } public T[] Next<T>(int x){ var ret = new T[x]; for(var i = 0; i < x; ++i) ret[i] = Next<T>(); return ret; } public T[][] Next<T>(int y, int x){ var ret = new T[y][]; for(var i = 0; i < y; ++i) ret[i] = Next<T>(x); return ret; } } }