結果
問題 | No.205 マージして辞書順最小 |
ユーザー | くわい |
提出日時 | 2015-11-20 21:14:47 |
言語 | Scala(Beta) (3.4.0) |
結果 |
AC
|
実行時間 | 1,080 ms / 5,000 ms |
コード長 | 834 bytes |
コンパイル時間 | 14,406 ms |
コンパイル使用メモリ | 257,300 KB |
実行使用メモリ | 63,188 KB |
最終ジャッジ日時 | 2024-11-16 17:09:56 |
合計ジャッジ時間 | 35,378 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 925 ms
62,160 KB |
testcase_01 | AC | 904 ms
62,740 KB |
testcase_02 | AC | 977 ms
62,984 KB |
testcase_03 | AC | 1,009 ms
62,816 KB |
testcase_04 | AC | 991 ms
63,140 KB |
testcase_05 | AC | 1,001 ms
62,992 KB |
testcase_06 | AC | 957 ms
62,680 KB |
testcase_07 | AC | 1,015 ms
63,088 KB |
testcase_08 | AC | 1,022 ms
63,048 KB |
testcase_09 | AC | 1,033 ms
63,176 KB |
testcase_10 | AC | 1,050 ms
63,188 KB |
testcase_11 | AC | 1,080 ms
63,104 KB |
testcase_12 | AC | 1,057 ms
63,036 KB |
testcase_13 | AC | 1,021 ms
62,828 KB |
testcase_14 | AC | 945 ms
62,928 KB |
testcase_15 | AC | 917 ms
62,540 KB |
testcase_16 | AC | 925 ms
62,984 KB |
testcase_17 | AC | 922 ms
62,696 KB |
testcase_18 | AC | 923 ms
62,956 KB |
ソースコード
import scala.annotation.tailrec import scala.io.StdIn object Problem205 { def proc(N: Int, S: Seq[String]): String = { @tailrec def rec(result: Seq[Char], S: Seq[String]): String = { if (S.isEmpty) return result.reverse.mkString("") val sorted = S.sorted val (next, others) = (sorted.head, sorted.tail) val nextChar: Char = next.head val remains: Seq[String] = next.tail match { case "" => others case x if x.startsWith("{") => others case x => (x + "{") +: others } rec(nextChar +: result, remains) } val padS = S.map(s => s + ("{" * (N - s.length))) rec(Nil, padS) } def main(args: Array[String]) = { val N = StdIn.readInt() val S = Seq.fill(N)(StdIn.readLine()) val result: String = proc(N, S) println(result) } }