結果

問題 No.1323 うしらずSwap
ユーザー fgwiebfaoishfgwiebfaoish
提出日時 2020-12-20 03:59:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,906 ms / 3,000 ms
コード長 5,217 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 117,172 KB
実行使用メモリ 67,372 KB
最終ジャッジ日時 2024-04-27 08:50:40
合計ジャッジ時間 39,616 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
26,508 KB
testcase_01 AC 31 ms
24,068 KB
testcase_02 AC 32 ms
24,456 KB
testcase_03 AC 31 ms
24,068 KB
testcase_04 AC 30 ms
24,068 KB
testcase_05 AC 30 ms
24,196 KB
testcase_06 AC 31 ms
24,328 KB
testcase_07 AC 32 ms
26,232 KB
testcase_08 AC 30 ms
25,932 KB
testcase_09 AC 31 ms
24,272 KB
testcase_10 AC 31 ms
24,328 KB
testcase_11 AC 33 ms
24,320 KB
testcase_12 AC 33 ms
26,620 KB
testcase_13 AC 31 ms
26,328 KB
testcase_14 AC 33 ms
24,328 KB
testcase_15 AC 31 ms
26,180 KB
testcase_16 AC 671 ms
67,372 KB
testcase_17 AC 833 ms
54,436 KB
testcase_18 AC 741 ms
64,940 KB
testcase_19 AC 803 ms
54,188 KB
testcase_20 AC 706 ms
62,896 KB
testcase_21 AC 689 ms
65,192 KB
testcase_22 AC 901 ms
63,140 KB
testcase_23 AC 703 ms
64,800 KB
testcase_24 AC 790 ms
56,224 KB
testcase_25 AC 661 ms
64,956 KB
testcase_26 AC 642 ms
66,980 KB
testcase_27 AC 663 ms
66,856 KB
testcase_28 AC 771 ms
66,972 KB
testcase_29 AC 528 ms
66,984 KB
testcase_30 AC 601 ms
56,604 KB
testcase_31 AC 589 ms
67,100 KB
testcase_32 AC 623 ms
56,240 KB
testcase_33 AC 1,335 ms
54,448 KB
testcase_34 AC 1,476 ms
65,060 KB
testcase_35 AC 1,521 ms
56,600 KB
testcase_36 AC 1,592 ms
63,280 KB
testcase_37 AC 1,604 ms
54,568 KB
testcase_38 AC 1,760 ms
54,576 KB
testcase_39 AC 1,855 ms
67,236 KB
testcase_40 AC 1,865 ms
54,692 KB
testcase_41 AC 1,869 ms
67,248 KB
testcase_42 AC 1,906 ms
56,868 KB
testcase_43 AC 372 ms
66,984 KB
testcase_44 AC 484 ms
56,236 KB
testcase_45 AC 598 ms
66,860 KB
testcase_46 AC 514 ms
56,240 KB
testcase_47 AC 431 ms
64,812 KB
testcase_48 AC 364 ms
65,080 KB
testcase_49 AC 497 ms
54,188 KB
testcase_50 AC 301 ms
56,236 KB
testcase_51 AC 106 ms
56,236 KB
testcase_52 AC 201 ms
54,312 KB
testcase_53 AC 475 ms
56,104 KB
testcase_54 AC 202 ms
56,360 KB
testcase_55 AC 495 ms
66,872 KB
testcase_56 AC 169 ms
62,900 KB
testcase_57 AC 598 ms
64,812 KB
testcase_58 AC 32 ms
24,140 KB
testcase_59 AC 35 ms
24,644 KB
testcase_60 AC 34 ms
26,128 KB
testcase_61 AC 32 ms
24,196 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.Collections;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.IO;
using System.Reflection;
using static System.Math;
using System.Numerics;
using System.Threading;
using System.Runtime.CompilerServices;
//using nint=System.Int32;
static class Program{
	const int mod=(int)1e9+7;
	static readonly int[][] di1=new int[][]{new int[]{-1,0},new int[]{1,0},new int[]{0,-1},new int[]{0,1}};
	static readonly int[][] di2=new int[][]{new int[]{-1,-1},new int[]{-1,0},new int[]{-1,1},new int[]{0,-1},new int[]{0,1},new int[]{1,-1},new int[]{1,0},new int[]{1,1}};
	static char[][] bm;
	static void Main(){
		Sc sc=new Sc();
		var s=sc.Ia;
		int h=s[0],w=s[1];
		char c='#';
		bm=new char[h+2][];
		var b1=new int[h+2][];
		var b2=new int[h+2][];
		var b3=new int[h+2][];
		var qu=new Queue<ValueTuple<int,int,int>>();
		for(int i = 1;i<=h;i++) {
			bm[i]=(c+sc.S+c).ToCharArray();
			b1[i]=new int[w+2];
			b2[i]=new int[w+2];
			b3[i]=new int[w+2];
		}
		bm[0]=bm[h+1]=new string(c,w+2).ToCharArray();
		b1[0]=b1[h+1]=b2[0]=b2[h+1]=b3[0]=b3[h+1]=new int[w+2];

		qu.Enqueue(ValueTuple.Create(s[2],s[3],1));
		b1[s[2]][s[3]]=1;
		while(qu.Count>0){
			var e=qu.Dequeue();
			Fdi(e.Item1,e.Item2,(y,x,z)=>{
				if(bm[y][x]=='.'&&b1[y][x]==0){
					qu.Enqueue(ValueTuple.Create(y,x,e.Item3+1));
					b1[y][x]=e.Item3+1;
				}
			});
		}
		qu=new Queue<ValueTuple<int,int,int>>();
		qu.Enqueue(ValueTuple.Create(s[4],s[5],1));
		b2[s[4]][s[5]]=1;
		while(qu.Count>0){
			var e=qu.Dequeue();
			Fdi(e.Item1,e.Item2,(y,x,z)=>{
				if(bm[y][x]=='.'&&b2[y][x]==0){
					qu.Enqueue(ValueTuple.Create(y,x,e.Item3+1));
					b2[y][x]=e.Item3+1;
				}
			});
		}
		qu=new Queue<ValueTuple<int,int,int>>();
		qu.Enqueue(ValueTuple.Create(s[2],s[3],1));
		b3[s[2]][s[3]]=1;
		while(qu.Count>0){
			var e=qu.Dequeue();
			if(e.Item1==s[4]&&e.Item2==s[5]){continue;}
			Fdi(e.Item1,e.Item2,(y,x,z)=>{
				if(bm[y][x]=='.'&&b3[y][x]==0){
					qu.Enqueue(ValueTuple.Create(y,x,e.Item3+1));
					b3[y][x]=e.Item3+1;
				}
			});
		}
		if(b1[s[4]][s[5]]==0){
			Console.WriteLine(-1);
			return;
		}
		int ans=mod;
		var li=new List<int>();
		Fdi(s[4],s[5],(y,x,z)=>{
			if(bm[y][x]!=c&&b3[y][x]!=0){li.Add(b3[y][x]);}
		});
		if(li.Count>=2){
			li.Sort();
			ans=li[0]+li[1];
		}
		for(int i = 1;i<=h;i++) {
			for(int j = 1;j<=w;j++) {
				if(bm[i][j]!=c){
					if(b1[i][j]==0||b2[i][j]==0){continue;}
					int p1=0,p2=0,g1=0,g2=0;
					var li1=new List<int>();
					var li2=new List<int>();
					Fdi(i,j,(y,x,z)=>{
						if(bm[y][x]!=c){
							if(b1[i][j]>b1[y][x]){p1++;g1|=1<<z;}
							else{li1.Add(b2[y][x]);}
							if(b2[i][j]>b2[y][x]){p2++;g2|=1<<z;}
							else{li2.Add(b1[y][x]);}
						}
					});
					if(p1+li1.Count>=3){
						if(p1==1&&p2==1&&(g1&g2)!=0){ans=Min(ans,b1[i][j]*2+b2[i][j]*2);}
						else if(p1+p2==1){ans=Min(ans,b1[i][j]*2+b2[i][j]*2);}
						else{ans=Min(ans,b1[i][j]*2+b2[i][j]*2-2);}
					}
					if(p1>=2&&li1.Count>=1){
						li1.Sort();
						ans=Min(ans,(b1[i][j]-1)*2+li1[0]*2);
					}
					if(p2>=2&&li2.Count>=1){
						li2.Sort();
						ans=Min(ans,(b2[i][j]-1)*2+li2[0]*2);
					}
					if(i==s[2]&&j==s[3]&&p2>=2){ans=Min(ans,(b2[i][j]-1)*2);}
					if(i==s[4]&&j==s[5]&&p1>=2){ans=Min(ans,(b1[i][j]-1)*2);}
				}
			}
		}
		Console.WriteLine("{0}",ans==mod?-1:ans);
	}
	static void Fdi(int y,int x,Action<int,int,int> f){for(int i=0;i<4;i++){f(y+di1[i][0],x+di1[i][1],i);}}
}
public class Sc{
	public int I{get{return int.Parse(Console.ReadLine());}}
	public long L{get{return long.Parse(Console.ReadLine());}}
	public double D{get{return double.Parse(Console.ReadLine());}}
	public string S{get{return Console.ReadLine();}}
	public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}}
	public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}}
	public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}}
	public string[] Sa{get{return Console.ReadLine().Split();}}
	public object[] Oa{get{return Console.ReadLine().Split();}}
	public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}}
	public int[] Ia3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),int.Parse);}
	public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}}
	public long[] La3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),long.Parse);}
	public double[] Da2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),double.Parse);}}
	public double[] Da3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),double.Parse);}
	public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;}
	public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;}
	public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;}
	public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;}
}
0