結果
問題 | No.205 マージして辞書順最小 |
ユーザー | 14番 |
提出日時 | 2016-05-03 19:53:30 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,622 bytes |
コンパイル時間 | 2,069 ms |
コンパイル使用メモリ | 110,208 KB |
実行使用メモリ | 29,648 KB |
最終ジャッジ日時 | 2024-10-05 05:47:24 |
合計ジャッジ時間 | 18,329 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
29,648 KB |
testcase_01 | AC | 27 ms
18,560 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 30 ms
19,072 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 4,977 ms
23,808 KB |
testcase_11 | AC | 1,867 ms
23,636 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Text; using System.Linq; class Program { public void Proc() { Reader.IsDebug = false; int itemCount = int.Parse(Reader.ReadLine()); List<string> inputList = new List<string>(); for(int i=0; i<itemCount; i++) { inputList.Add(Reader.ReadLine()); } StringBuilder sb = new StringBuilder(); while (inputList.Max(a=>a.Length) > 0) { int idx = this.SelectFirstByDic(inputList); sb.Append(inputList[idx][0]); if(inputList[idx].Length == 1) { inputList.RemoveAt(idx); } else { inputList[idx] = inputList[idx].Substring(1); } if(inputList.Count == 0) { break; } } Console.WriteLine(sb.ToString()); } private int SelectFirstByDic(List<string> target) { Dictionary<int, string> dic = new Dictionary<int, string>(); target.ForEach(a=>dic.Add(dic.Count, a)); List<KeyValuePair<int, string>> list = new List<KeyValuePair<int, string>>(dic.ToList()); list.Sort((a,b)=>{ if(a.Value.Equals(b.Value)) { return 0; } if(a.Value.Length == 0) { return 1; } if(b.Value.Length == 0) { return -1; } int len = Math.Min(a.Value.Length ,b.Value.Length); for(int i=0; i<len; i++) { if(a.Value[i] < b.Value[i]) { return -1; } else if(a.Value[i] > b.Value[i]) { return 1; } } KeyValuePair<int, string> sht = (a.Value.Length < b.Value.Length)?a:b; KeyValuePair<int, string> lng = (a.Key == sht.Key)?b:a; foreach (KeyValuePair<int, string> item in dic) { if(item.Key != sht.Key && item.Key != lng.Key) { if((sht.Value + item.Value).CompareTo(lng.Value) < 0) { if(sht.Key == a.Key) { return - 1; } else { return 1; } } } } return (lng.Key == a.Key)?-1:1; }); return list[0].Key; } public class Reader { public static bool IsDebug = true; private static String PlainInput = @" "; private static System.IO.StringReader Sr = null; public static string ReadLine() { if (IsDebug) { if (Sr == null) { Sr = new System.IO.StringReader(PlainInput.Trim()); } return Sr.ReadLine(); } else { return Console.ReadLine(); } } public static int[] GetInt(char delimiter = ' ', bool trim = false) { string inptStr = ReadLine(); if (trim) { inptStr = inptStr.Trim(); } string[] inpt = inptStr.Split(delimiter); int[] ret = new int[inpt.Length]; for (int i = 0; i < inpt.Length; i++) { ret[i] = int.Parse(inpt[i]); } return ret; } } static void Main() { Program prg = new Program(); prg.Proc(); } }