結果

問題 No.291 黒い文字列
ユーザー kuuso1kuuso1
提出日時 2015-10-17 11:21:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 983 ms / 2,000 ms
コード長 2,771 bytes
コンパイル時間 3,403 ms
コンパイル使用メモリ 114,136 KB
実行使用メモリ 48,344 KB
最終ジャッジ日時 2024-07-22 10:06:57
合計ジャッジ時間 15,357 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
28,372 KB
testcase_01 AC 58 ms
27,436 KB
testcase_02 AC 120 ms
35,408 KB
testcase_03 AC 87 ms
31,408 KB
testcase_04 AC 59 ms
29,756 KB
testcase_05 AC 90 ms
31,440 KB
testcase_06 AC 105 ms
33,780 KB
testcase_07 AC 71 ms
29,144 KB
testcase_08 AC 80 ms
31,932 KB
testcase_09 AC 51 ms
26,556 KB
testcase_10 AC 237 ms
42,700 KB
testcase_11 AC 170 ms
42,564 KB
testcase_12 AC 173 ms
44,624 KB
testcase_13 AC 58 ms
29,504 KB
testcase_14 AC 117 ms
35,032 KB
testcase_15 AC 86 ms
31,152 KB
testcase_16 AC 645 ms
44,132 KB
testcase_17 AC 675 ms
46,040 KB
testcase_18 AC 655 ms
46,044 KB
testcase_19 AC 737 ms
46,436 KB
testcase_20 AC 769 ms
46,188 KB
testcase_21 AC 628 ms
44,124 KB
testcase_22 AC 772 ms
46,172 KB
testcase_23 AC 983 ms
44,124 KB
testcase_24 AC 687 ms
46,040 KB
testcase_25 AC 617 ms
43,992 KB
testcase_26 AC 608 ms
46,052 KB
testcase_27 AC 605 ms
46,172 KB
testcase_28 AC 612 ms
48,344 KB
testcase_29 AC 616 ms
44,368 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 N=S.Length;
		int[,,,] dp=new int[21,21,21,21];
		for(int i=0;i<21;i++){
			for(int j=0;j<21;j++){
				for(int k=0;k<21;k++){
					for(int l=0;l<21;l++){
						dp[i,j,k,l]=-1;
					}
				}
			}
		}
		dp[0,0,0,0]=0;
		for(int c=0;c<N;c++){
			int[,,,] dnxt=new int[21,21,21,21];
			for(int i=0;i<21;i++){
				for(int j=0;j<21;j++){
					for(int k=0;k<21;k++){
						for(int l=0;l<21;l++){
							dnxt[i,j,k,l]=dp[i,j,k,l];
						}
					}
				}
			}
			for(int i=0;i<21;i++){
				for(int j=0;j<21;j++){
					for(int k=0;k<21;k++){
						for(int l=0;l<21;l++){
							if(dp[i,j,k,l]==-1)continue;
							switch(S[c]){
								case 'K':if(i+1<21)dnxt[i+1,j,k,l]=Math.Max(dnxt[i+1,j,k,l],dp[i,j,k,l]);break;
								case 'U':if(j+1<21&&i-1>=0)dnxt[i-1,j+1,k,l]=Math.Max(dnxt[i-1,j+1,k,l],dp[i,j,k,l]);break;
								case 'R':if(k+1<21&&j-1>=0)dnxt[i,j-1,k+1,l]=Math.Max(dnxt[i,j-1,k+1,l],dp[i,j,k,l]);break;
								case 'O':if(l+1<21&&k-1>=0)dnxt[i,j,k-1,l+1]=Math.Max(dnxt[i,j,k-1,l+1],dp[i,j,k,l]);break;
								case 'I':if(l-1>=0)dnxt[i,j,k,l-1]=Math.Max(dnxt[i,j,k,l-1],dp[i,j,k,l]+1);break;
								case '?':
									if(i+1<21)dnxt[i+1,j,k,l]=Math.Max(dnxt[i+1,j,k,l],dp[i,j,k,l]);
									if(j+1<21&&i-1>=0)dnxt[i-1,j+1,k,l]=Math.Max(dnxt[i-1,j+1,k,l],dp[i,j,k,l]);
									if(k+1<21&&j-1>=0)dnxt[i,j-1,k+1,l]=Math.Max(dnxt[i,j-1,k+1,l],dp[i,j,k,l]);
									if(l+1<21&&k-1>=0)dnxt[i,j,k-1,l+1]=Math.Max(dnxt[i,j,k-1,l+1],dp[i,j,k,l]);
									if(l-1>=0)dnxt[i,j,k,l-1]=Math.Max(dnxt[i,j,k,l-1],dp[i,j,k,l]+1);
									break;
								default:dnxt[i,j,k,l]=dp[i,j,k,l];
									break;
							}
						}
					}
				}
			}
			dp=dnxt;
		}
		
		int max=0;
		foreach(var k in dp)max=Math.Max(max,k);
		Console.WriteLine(max);
		
		
	}
	String S;
	public Sol(){
		S=rs();
	}

	struct ATMTN{
		public int K,U,R,O,I;
		public ATMTN(int k,int u,int r,int o,int i){
			K=k;U=u;R=r;O=o;I=i;
		}
		public ATMTN(ATMTN a){
			K=a.K;U=a.U;R=a.R;O=a.O;I=a.I;
		}
	}


	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