結果

問題 No.323 yuki国
ユーザー 14番14番
提出日時 2016-05-19 01:36:35
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 4,091 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 108,928 KB
実行使用メモリ 158,148 KB
最終ジャッジ日時 2023-09-10 21:30:42
合計ジャッジ時間 10,039 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
23,824 KB
testcase_01 AC 65 ms
21,928 KB
testcase_02 AC 65 ms
22,120 KB
testcase_03 AC 65 ms
24,072 KB
testcase_04 AC 65 ms
21,884 KB
testcase_05 AC 65 ms
23,940 KB
testcase_06 AC 67 ms
21,964 KB
testcase_07 AC 65 ms
19,896 KB
testcase_08 TLE -
testcase_09 AC 1,801 ms
86,512 KB
testcase_10 AC 66 ms
24,016 KB
testcase_11 AC 67 ms
19,924 KB
testcase_12 AC 67 ms
21,936 KB
testcase_13 AC 1,714 ms
88,964 KB
testcase_14 TLE -
testcase_15 AC 1,377 ms
89,092 KB
testcase_16 AC 3,631 ms
144,400 KB
testcase_17 AC 1,652 ms
87,972 KB
testcase_18 AC 80 ms
28,352 KB
testcase_19 AC 2,329 ms
101,040 KB
testcase_20 AC 100 ms
28,480 KB
testcase_21 TLE -
testcase_22 AC 479 ms
48,236 KB
testcase_23 TLE -
testcase_24 AC 193 ms
40,584 KB
testcase_25 AC 1,544 ms
87,744 KB
testcase_26 AC 188 ms
34,284 KB
testcase_27 AC 3,904 ms
149,004 KB
testcase_28 AC 1,662 ms
88,232 KB
testcase_29 AC 1,683 ms
84,744 KB
testcase_30 AC 65 ms
24,000 KB
testcase_31 AC 64 ms
23,960 KB
testcase_32 AC 66 ms
22,112 KB
testcase_33 AC 65 ms
24,028 KB
testcase_34 AC 64 ms
21,976 KB
testcase_35 AC 66 ms
24,072 KB
testcase_36 AC 64 ms
21,972 KB
testcase_37 AC 64 ms
21,980 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;
using System.Linq;

class Program
{
    public void Proc()
    {
        Reader.IsDebug =  false;
        int[] inpt = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray();
        this.Map =  new Dictionary<int, int>[inpt[0], inpt[1]];
        this.Src = new char[inpt[0], inpt[1]];
        inpt = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray();
        int defaultSize = inpt[0];
        int startY = inpt[1];
        int startX = inpt[2];
        
        inpt = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray();
        int goalSize = inpt[0];
        int goalY = inpt[1];
        int goalX = inpt[2];
        
        int yukiCount = 0;
        int jimenCount = 0;
        
        for(int i=0; i<this.Map.GetLength(0); i++) {
            string str = Reader.ReadLine();
            for(int j=0; j<str.Length; j++) {
                if(str[j] == '*') {
                    yukiCount++;
                } else
                {
                    jimenCount++;
                }
                this.Src[i,j] = str[j];
            }
        }
        
        TaskItem firstTask = new TaskItem(startX, startY, defaultSize);
        Queue<TaskItem> taskQ = new Queue<TaskItem>();
        taskQ.Enqueue(firstTask);
        
        while (taskQ.Count > 0)
        {
            TaskItem tsk = taskQ.Dequeue();
            int size = tsk.Size;
            
            if(this.Map[tsk.Y, tsk.X] != null && this.Map[tsk.Y, tsk.X].ContainsKey(tsk.Size)) {
                continue;
            }
            if(this.Map[tsk.Y, tsk.X] == null) {
                this.Map[tsk.Y, tsk.X] = new Dictionary<int, int>();
            }
            this.Map[tsk.Y, tsk.X].Add(size, 1);
            if(tsk.Y == goalY && tsk.X == goalX && size == goalSize) {
                break;
            }
            int[][] next = new int[4][];
            next[0] = new int[]{tsk.Y - 1, tsk.X};
            next[1] = new int[]{tsk.Y + 1, tsk.X};
            next[2] = new int[]{tsk.Y, tsk.X + 1};
            next[3] = new int[]{tsk.Y, tsk.X - 1};
            for(int i=0; i<next.Length; i++) {
                int nextY = next[i][0];
                int nextX = next[i][1];
                
                if(nextY < 0 || nextY >= this.Map.GetLength(0) || nextX < 0 || nextX >= this.Map.GetLength(1)) {
                    continue;
                }
                int newVal = (this.Src[nextY, nextX] == '*'?size+1:size-1);
                if(newVal <= 0) {
                    continue;
                }
                if(newVal > this.Map.GetLength(0) * this.Map.GetLength(1) + Math.Max(goalSize, defaultSize)) {
                    continue;
                }
                TaskItem newT = new TaskItem(nextX, nextY, newVal);
                taskQ.Enqueue(newT);
            }
        }
        string ans = "No";
        if(this.Map[goalY, goalX] != null && this.Map[goalY, goalX].ContainsKey(goalSize)) {
            ans = "Yes";
        }
        Console.WriteLine(ans);

    }
    
    private Dictionary<int, int>[,] Map;

    private char[,] Src;  

    private class TaskItem {
        public int X;
        public int Y;
        public int Size;
        public TaskItem(int x, int y, int size) {
            this.X = x;
            this.Y = y;
            this.Size = size;
        }
    }
    
    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"




1 2
1000 0 0
1 0 1
..


 
";
        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();
            }
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0