結果

問題 No.470 Inverse S+T Problem
ユーザー kuuso1kuuso1
提出日時 2016-12-20 01:34:24
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,818 ms / 2,000 ms
コード長 2,426 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 106,260 KB
実行使用メモリ 30,088 KB
最終ジャッジ日時 2023-08-24 01:09:23
合計ジャッジ時間 8,383 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
25,844 KB
testcase_01 AC 57 ms
22,708 KB
testcase_02 AC 81 ms
23,832 KB
testcase_03 AC 82 ms
23,892 KB
testcase_04 AC 61 ms
23,124 KB
testcase_05 AC 82 ms
23,872 KB
testcase_06 AC 72 ms
27,176 KB
testcase_07 AC 74 ms
25,092 KB
testcase_08 AC 72 ms
25,072 KB
testcase_09 AC 84 ms
23,944 KB
testcase_10 AC 85 ms
23,792 KB
testcase_11 AC 519 ms
28,100 KB
testcase_12 AC 84 ms
23,884 KB
testcase_13 AC 84 ms
23,932 KB
testcase_14 AC 85 ms
23,940 KB
testcase_15 AC 58 ms
22,760 KB
testcase_16 AC 84 ms
21,840 KB
testcase_17 AC 90 ms
24,072 KB
testcase_18 AC 80 ms
25,960 KB
testcase_19 AC 88 ms
23,940 KB
testcase_20 AC 81 ms
23,896 KB
testcase_21 AC 81 ms
21,960 KB
testcase_22 AC 82 ms
25,772 KB
testcase_23 AC 87 ms
23,948 KB
testcase_24 AC 80 ms
23,812 KB
testcase_25 AC 57 ms
20,776 KB
testcase_26 AC 1,818 ms
30,088 KB
testcase_27 AC 58 ms
22,808 KB
testcase_28 AC 57 ms
25,036 KB
testcase_29 AC 57 ms
22,928 KB
testcase_30 AC 55 ms
22,876 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;
using System.Diagnostics;
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		if(N > 52){
			Console.WriteLine("Impossible");
			return;
		}
		
		HashSet<String> one = new HashSet<String>();
		HashSet<String> two = new HashSet<String>();
		for(int i=0;i<N;i++){
			one.Add(S[i].Substring(0,1));
			one.Add(S[i].Substring(2));
			two.Add(S[i].Substring(0,2));
			two.Add(S[i].Substring(1));
		}
		if(one.Count<N || two.Count<N){
			Console.WriteLine("Impossible");
			return;
		}
		
		
		
		String[] S0 = new String[N];
		for(int i=0;i<N;i++)S0[i] = S[i];
		
		int[] ord = Enumerable.Range(0,N).ToArray();
		Array.Sort(S,ord);
		
		h = new HashSet<String>();
		found = false;
		route = new int[N];
		dfs(0);
		
		if(!found){
			Console.WriteLine("Impossible");
			return;
		}
		
		Array.Sort(ord,ans);
		for(int i=0;i<N;i++){
			Console.WriteLine("{0} {1}",S0[i].Substring(0,ans[i]),S0[i].Substring(ans[i]));
		}
		
		
		
	}
	
	Stopwatch sw;
	
	bool found;
	int[] route;
	int[] ans;
	HashSet<String> h;
	void dfs(int now){
		if(found) return;
		if(sw.ElapsedMilliseconds >= 1800) return;
		if(now == N){
			found = true;
			ans = new int[N];
			for(int i=0;i<N;i++) ans[i] = route[i];
			return;
		}
		for(int j=1;j<=2;j++){
			var s0 = S[now].Substring(0,j);
			var s1 = S[now].Substring(j);
			if(!h.Contains(s0) && !h.Contains(s1)){
				h.Add(s0);
				h.Add(s1);
				route[now] = j;
				dfs(now+1);
				route[now] = 0;
				h.Remove(s0);
				h.Remove(s1);
			}
		}
	}
	
	
	
	int N;
	String[] S;
	public Sol(){
		sw = new Stopwatch();
		sw.Start();
		
		N = ri();
		S = new String[N];
		for(int i=0;i<N;i++) S[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(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0