結果

問題 No.318 学学学学学
ユーザー 小指が強い人小指が強い人
提出日時 2015-12-11 00:55:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 610 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 45,440 KB
最終ジャッジ日時 2024-06-22 15:05:47
合計ジャッジ時間 10,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
13,952 KB
testcase_01 AC 119 ms
16,640 KB
testcase_02 AC 177 ms
18,688 KB
testcase_03 AC 109 ms
15,488 KB
testcase_04 AC 159 ms
18,304 KB
testcase_05 AC 599 ms
45,440 KB
testcase_06 AC 446 ms
33,408 KB
testcase_07 AC 386 ms
33,024 KB
testcase_08 AC 357 ms
32,128 KB
testcase_09 AC 325 ms
30,848 KB
testcase_10 AC 304 ms
30,836 KB
testcase_11 AC 610 ms
44,544 KB
testcase_12 AC 505 ms
33,408 KB
testcase_13 AC 435 ms
33,536 KB
testcase_14 AC 373 ms
31,616 KB
testcase_15 AC 327 ms
30,720 KB
testcase_16 AC 294 ms
30,720 KB
testcase_17 AC 419 ms
33,024 KB
testcase_18 AC 413 ms
33,152 KB
testcase_19 AC 400 ms
33,280 KB
testcase_20 AC 292 ms
30,464 KB
testcase_21 AC 76 ms
12,416 KB
testcase_22 AC 74 ms
12,160 KB
testcase_23 AC 77 ms
12,288 KB
testcase_24 AC 76 ms
12,160 KB
testcase_25 AC 76 ms
12,288 KB
testcase_26 AC 77 ms
12,288 KB
testcase_27 AC 79 ms
12,288 KB
testcase_28 AC 75 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

map = Struct.new(:min, :max)
map2 = Struct.new(:num, :range)
n = gets.to_i
a = gets.split.map(&:to_i)
b = Array.new(n).map{map2.new(0, map.new)}
c = Hash.new
d = Array.new
find = false
n.times do |i|
    if !c.has_key?(a[i])
        c[a[i]] = map.new(i, i)
    else
        c[a[i]].max = i
        find = true
    end
    d.push(a[i])
end
if !find
   puts a.join(" ")
   exit
end
d.uniq!.sort!{|a, b| b <=> a}
d.each do |x|
    r = c[x]
    t = map.new(r.min, r.max)
    i = r.min
    while i <= r.max do
        if b[i].num == 0
            b[i].num = x
            b[i].range = t
            i += 1
        else
            if b[i].range.min > r.min
                b[i].range.min = r.min
            end
            si = b[i].range.max + 1
            if b[i].range.max < r.max
                b[i].range.max = r.max
            end
            i = si
        end
    end
end
sp = false
b.each do |x|
    if sp
        print " "
    end
    print x.num
    sp = true
end
puts
0