結果

問題 No.1170 Never Want to Walk
ユーザー simansiman
提出日時 2020-10-27 16:01:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 605 ms / 2,000 ms
コード長 1,108 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-07-21 21:56:50
合計ジャッジ時間 12,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,160 KB
testcase_01 AC 99 ms
12,032 KB
testcase_02 AC 94 ms
12,032 KB
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 90 ms
12,032 KB
testcase_05 AC 92 ms
12,032 KB
testcase_06 AC 91 ms
12,160 KB
testcase_07 AC 94 ms
12,032 KB
testcase_08 AC 91 ms
12,032 KB
testcase_09 AC 92 ms
12,288 KB
testcase_10 AC 96 ms
12,160 KB
testcase_11 AC 92 ms
12,032 KB
testcase_12 AC 95 ms
12,160 KB
testcase_13 AC 97 ms
12,032 KB
testcase_14 AC 94 ms
12,032 KB
testcase_15 AC 94 ms
12,160 KB
testcase_16 AC 93 ms
12,160 KB
testcase_17 AC 102 ms
12,032 KB
testcase_18 AC 100 ms
12,160 KB
testcase_19 AC 97 ms
12,032 KB
testcase_20 AC 96 ms
12,160 KB
testcase_21 AC 95 ms
12,288 KB
testcase_22 AC 95 ms
12,160 KB
testcase_23 AC 98 ms
12,032 KB
testcase_24 AC 95 ms
12,288 KB
testcase_25 AC 97 ms
12,160 KB
testcase_26 AC 96 ms
12,032 KB
testcase_27 AC 602 ms
34,432 KB
testcase_28 AC 599 ms
34,176 KB
testcase_29 AC 598 ms
34,560 KB
testcase_30 AC 605 ms
34,560 KB
testcase_31 AC 594 ms
34,432 KB
testcase_32 AC 590 ms
34,432 KB
testcase_33 AC 595 ms
34,176 KB
testcase_34 AC 585 ms
34,688 KB
testcase_35 AC 599 ms
34,688 KB
testcase_36 AC 597 ms
34,560 KB
testcase_37 AC 579 ms
34,432 KB
testcase_38 AC 600 ms
34,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class UnionFind
  def initialize(n)
    @size = Array.new(n, 1)
    @rank = Array.new(n, 0)
    @parent = []

    (0..n).each do |i|
      @parent[i] = i
    end
  end

  def find(x)
    if @parent[x] == x
      x
    else
      @parent[x] = find(@parent[x])
    end
  end

  def unite(x, y)
    x = find(x)
    y = find(y)
    return if x == y

    if @rank[x] < @rank[y]
      @parent[x] = y
      @size[y] += @size[x]
    else
      @parent[y] = x
      @size[x] += @size[y]

      @rank[x] += 1 if @rank[x] == @rank[y]
    end
  end

  def same?(x, y)
    find(x) == find(y)
  end

  def size(x)
    @size[find(x)]
  end
end

N, A, B = gets.split.map(&:to_i)
X = gets.split.map(&:to_i)
uf = UnionFind.new(N)

l = 0
r = 1

while l <= r
  a = X[l]
  b = X[r]
  d = b - a

  if l != r && A <= d && d <= B
    uf.unite(l, r)
  end

  if d < A
    if r + 1 < N
      r += 1
    else
      l += 1
    end
  elsif B < d
    l += 1
  else
    if r + 1 < N
      if X[r + 1] - a <= B
        r += 1
      else
        l += 1
      end
    else
      l += 1
    end
  end
end

N.times do |i|
  puts uf.size(i)
end
0