結果

問題 No.205 マージして辞書順最小
ユーザー maimai
提出日時 2018-09-25 00:39:38
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 20,256 KB
最終ジャッジ日時 2024-09-24 17:31:16
合計ジャッジ時間 26,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
12,160 KB
testcase_01 AC 111 ms
12,672 KB
testcase_02 WA -
testcase_03 TLE -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 153 ms
12,544 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:10: warning: assigned but unused variable - item
Syntax OK

ソースコード

diff #

def ascan; gets.split.map(&:to_i); end

strs_t = gets.to_i.times.map{gets.chomp}

best = 'z'*250
400.times do
    ans = ''
    strs = strs_t.map{|l| l.chars}
    while !strs.empty?
        item, i = strs.each_with_index.min{|a,b| a[0][0] == b[0][0] ? rand(-1..1) : a[0][0] <=> b[0][0]}
        ans << strs[i].shift
        strs.delete_at(i) if strs[i].empty?
    end
    best = [ans,best].min
end

puts best
0