結果

問題 No.323 yuki国
ユーザー kuuso1kuuso1
提出日時 2015-12-16 00:54:46
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 515 ms / 5,000 ms
コード長 2,213 bytes
コンパイル時間 1,153 ms
コンパイル使用メモリ 116,068 KB
実行使用メモリ 48,000 KB
最終ジャッジ日時 2024-06-28 12:19:52
合計ジャッジ時間 6,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,016 KB
testcase_01 AC 29 ms
24,196 KB
testcase_02 AC 30 ms
23,944 KB
testcase_03 AC 28 ms
26,068 KB
testcase_04 AC 28 ms
23,944 KB
testcase_05 AC 29 ms
22,196 KB
testcase_06 AC 28 ms
25,980 KB
testcase_07 AC 28 ms
23,816 KB
testcase_08 AC 282 ms
34,284 KB
testcase_09 AC 145 ms
30,336 KB
testcase_10 AC 27 ms
18,048 KB
testcase_11 AC 26 ms
17,920 KB
testcase_12 AC 28 ms
18,048 KB
testcase_13 AC 138 ms
30,208 KB
testcase_14 AC 278 ms
30,336 KB
testcase_15 AC 139 ms
30,080 KB
testcase_16 AC 276 ms
30,336 KB
testcase_17 AC 148 ms
33,664 KB
testcase_18 AC 94 ms
29,184 KB
testcase_19 AC 238 ms
29,184 KB
testcase_20 AC 54 ms
30,592 KB
testcase_21 AC 510 ms
47,872 KB
testcase_22 AC 58 ms
31,232 KB
testcase_23 AC 515 ms
48,000 KB
testcase_24 AC 167 ms
30,208 KB
testcase_25 AC 176 ms
30,336 KB
testcase_26 AC 350 ms
30,208 KB
testcase_27 AC 348 ms
30,336 KB
testcase_28 AC 173 ms
30,080 KB
testcase_29 AC 171 ms
29,952 KB
testcase_30 AC 27 ms
18,176 KB
testcase_31 AC 27 ms
18,048 KB
testcase_32 AC 28 ms
17,920 KB
testcase_33 AC 28 ms
18,048 KB
testcase_34 AC 29 ms
18,024 KB
testcase_35 AC 28 ms
18,048 KB
testcase_36 AC 28 ms
17,920 KB
testcase_37 AC 28 ms
18,304 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;
using System.Collections.Generic;
using System.Linq;
using System.Text;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		int Top=2500;
		
		bool[][][] M=new bool[Top][][];
		for(int t=0;t<Top;t++){
			M[t]=new bool[H][];
			for(int i=0;i<H;i++){
				M[t][i]=new bool[W];
			}
		}
		
		int[] dy=new int[]{0,1,0,-1};
		int[] dx=new int[]{1,0,-1,0};
		M[A][Si][Sj]=true;
		Stack<int> Stk=new Stack<int>();
		Stk.Push(enc(Si,Sj,A));
		while(Stk.Count>0){
			var p=Stk.Pop();
			int x=decC(p);
			int y=decR(p);
			int vol=decV(p);
			for(int t=0;t<4;t++){
				int nx=x+dx[t];
				int ny=y+dy[t];
				if(!InRange(nx,W)||!InRange(ny,H))continue;
				int nvol=vol;
				if(Map[ny][nx]=='*')nvol++;
				if(Map[ny][nx]=='.')nvol--;
				if(!InRange(nvol,Top,1))continue;
				if(!M[nvol][ny][nx]){
					if(ny==Gi && nx==Gj && nvol==B){
						Console.WriteLine("Yes");return;
					}
					M[nvol][ny][nx]=true;
					Stk.Push(enc(ny,nx,nvol));
				}
			}
		}
		
		Console.WriteLine(M[B][Gi][Gj]?"Yes":"No");
		
		
	}
	
	static bool InRange(int t,int ul,int ll=0){
		return (t<ul)&&(t>=ll);
	}
	
	static int decR(int s){
		return s&0xFF;
	}
	static int decC(int s){
		return (s>>8)&0xFF;
	}
	static int decV(int s){
		return s>>16;
	}
	static int enc(int r,int c,int v){
		return r+(c<<8)+(v<<16);
	}
	
	
	
	int H,W;
	int A,Si,Sj;
	int B,Gi,Gj;
	String[] Map;
	public Sol(){
		var d=ria();
		H=d[0];W=d[1];
		d=ria();
		A=d[0];Si=d[1];Sj=d[2];
		d=ria();
		B=d[0];Gi=d[1];Gj=d[2];
		Map=new String[H];
		for(int i=0;i<H;i++)Map[i]=rs();
	}




	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(){return Console.ReadLine().Split(' ');}
	static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));}
	static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));}
	static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));}
}
0