結果
問題 | No.470 Inverse S+T Problem |
ユーザー | 14番 |
提出日時 | 2016-12-23 05:30:53 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,863 bytes |
コンパイル時間 | 1,033 ms |
コンパイル使用メモリ | 113,300 KB |
実行使用メモリ | 54,904 KB |
最終ジャッジ日時 | 2024-12-22 13:37:31 |
合計ジャッジ時間 | 12,319 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
33,868 KB |
testcase_01 | AC | 27 ms
31,572 KB |
testcase_02 | AC | 27 ms
29,524 KB |
testcase_03 | AC | 30 ms
54,904 KB |
testcase_04 | AC | 26 ms
31,608 KB |
testcase_05 | AC | 29 ms
27,052 KB |
testcase_06 | AC | 42 ms
25,804 KB |
testcase_07 | AC | 43 ms
25,940 KB |
testcase_08 | AC | 41 ms
24,008 KB |
testcase_09 | AC | 28 ms
22,584 KB |
testcase_10 | AC | 29 ms
24,900 KB |
testcase_11 | AC | 213 ms
28,996 KB |
testcase_12 | AC | 28 ms
22,960 KB |
testcase_13 | AC | 29 ms
24,524 KB |
testcase_14 | AC | 31 ms
26,936 KB |
testcase_15 | AC | 36 ms
24,912 KB |
testcase_16 | AC | 29 ms
26,696 KB |
testcase_17 | AC | 29 ms
24,756 KB |
testcase_18 | AC | 29 ms
25,136 KB |
testcase_19 | AC | 41 ms
26,676 KB |
testcase_20 | AC | 29 ms
25,016 KB |
testcase_21 | AC | 30 ms
24,880 KB |
testcase_22 | AC | 30 ms
24,660 KB |
testcase_23 | AC | 29 ms
24,752 KB |
testcase_24 | AC | 28 ms
24,912 KB |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | AC | 28 ms
25,956 KB |
testcase_29 | AC | 25 ms
23,960 KB |
testcase_30 | AC | 26 ms
54,044 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Collections.Generic; using System.Text.RegularExpressions; using System.Text; public class Program { public void Proc() { Reader.IsDebug = false; int inputCount = int.Parse(Reader.ReadLine()); this.WordList = new string[inputCount]; for(int i=0; i<inputCount; i++) { this.WordList[i] = Reader.ReadLine(); } if(inputCount > ('z'-'a') + ('Z' - 'A') + 2) { Console.WriteLine("Impossible"); return; } List<string> ans = this.GetAns(0, new Dictionary<string, int>()); if(ans == null) { Console.WriteLine("Impossible"); } else { ans.ForEach(a=>Console.WriteLine(a)); } } private List<string> GetAns(int idx, Dictionary<string, int> dic) { string str1 = WordList[idx].Substring(0,1); string str2 = WordList[idx].Substring(1,2); if((!dic.ContainsKey(str1)) && (!dic.ContainsKey(str2))) { if(idx < this.WordList.Length - 1) { dic.Add(str1, idx); dic.Add(str2, idx); List<string> tmp = GetAns(idx+1, dic); dic.Remove(str1); dic.Remove(str2); if(tmp != null) { tmp.Insert(0, str1 + " " + str2); return tmp; } } else { return new string[] {str1 + " " + str2}.ToList(); } } str1 = this.WordList[idx].Substring(0, 2); str2 = this.WordList[idx].Substring(2, 1); if((!dic.ContainsKey(str1)) && (!dic.ContainsKey(str2))) { if(idx < this.WordList.Length - 1) { dic.Add(str1, idx); dic.Add(str2, idx); List<string> tmp = GetAns(idx+1, dic); dic.Remove(str1); dic.Remove(str2); if(tmp != null) { tmp.Insert(0, str1 + " " + str2); return tmp; } } else { return new string[] {str1 + " " + str2}.ToList(); } } return null; } private string[] WordList; public class Reader { public static bool IsDebug = true; private static System.IO.StringReader SReader; private static string InitText = @" 2 aaa aaa "; public static string ReadLine() { if(IsDebug) { if(SReader == null) { SReader = new System.IO.StringReader(InitText.Trim()); } return SReader.ReadLine(); } else { return Console.ReadLine(); } } } public static void Main(string[] args) { Program prg = new Program(); prg.Proc(); } }