結果

問題 No.2857 Div Array
ユーザー tomeruntomerun
提出日時 2024-08-25 14:17:04
言語 Crystal
(1.11.2)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 2,364 bytes
コンパイル時間 12,689 ms
コンパイル使用メモリ 297,088 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 14:17:20
合計ジャッジ時間 14,164 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 37 ms
6,940 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 36 ms
6,944 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 31 ms
6,944 KB
testcase_18 AC 28 ms
6,944 KB
testcase_19 AC 16 ms
6,940 KB
testcase_20 AC 47 ms
6,940 KB
testcase_21 AC 45 ms
6,944 KB
testcase_22 AC 47 ms
6,940 KB
testcase_23 AC 47 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353i64
n, m, k = read_line.split.map(&.to_i)
divs = Hash(Int32, Int32).new { |h, k| h[k] = 0 }
1.upto(m) do |i|
  divs[m // i] += 1
end
ks = divs.keys.sort
vs = ks.map { |k| divs[k].to_i64 }
mat = Matrix(Int64).new(ks.size, ks.size)
ks.size.times do |i|
  ks.size.times do |j|
    if i == j
      mat[i][i] += vs[i]
    elsif (ks[i] - ks[j]).abs <= k
      mat[i][j] += vs[j]
    end
  end
end
mat = mat.pow(n - 1)
puts ks.size.times.sum { |i| mat.a[i].sum * vs[i] } % MOD

class Matrix(T)
  @a : Array(Array(T))
  getter :a, :d1, :d2

  def initialize(n : Int32, m : Int32)
    @a = Array.new(n) { Array.new(m, T.zero) }
    @d1 = n
    @d2 = m
  end

  def clone
    ret = Matrix(T).new(@d1, @d2)
    @d1.times do |i|
      @d2.times do |j|
        ret.a[i][j] = @a[i][j]
      end
    end
    return ret
  end

  def [](idx : Int32)
    return @a[idx]
  end

  def mul(other : Matrix(T))
    if @d2 != other.d1
      raise ArgumentError.new
    end
    d3 = other.d2
    tmp = Array.new(d3) { Array.new(@d2, T.zero) }
    d3.times do |i|
      tr1 = tmp[i]
      @d2.times do |j|
        tr1[j] = other[j][i]
      end
    end
    ret = Array.new(@d1) { Array.new(d3, T.zero) }
    @d1.times do |i|
      row1 = @a[i]
      ret1 = ret[i]
      d3.times do |j|
        sum = T.zero
        row2 = tmp[j]
        @d2.times do |k|
          sum += row1[k] * row2[k]
          sum %= MOD
        end
        ret1[j] = sum
      end
    end
    @a = ret
  end

  def mul_l(other : Matrix(T))
    # in-place
    if other.d2 != @d1
      raise ArgumentError.new
    end
    d3 = @d2
    tmp = Array.new(d3) { Array.new(@d1, T.zero) }
    d3.times do |i|
      tr1 = tmp[i]
      @d1.times do |j|
        tr1[j] = @a[j][i]
      end
    end
    other.d1.times do |i|
      row1 = other.a[i]
      ret1 = @a[i]
      d3.times do |j|
        sum = T.zero
        row2 = tmp[j]
        other.d2.times do |k|
          sum += row1[k] * row2[k]
          sum %= MOD
        end
        ret1[j] = sum
      end
    end
  end

  def pow(p : Int64)
    b = Matrix(T).new(@d1, @d2)
    ret = Matrix(T).new(@d1, @d2)
    @d1.times do |i|
      @d2.times do |j|
        b.a[i][j] = @a[i][j] % MOD
      end
      ret.a[i][i] = 1
    end
    while p > 0
      if (p & 1) != 0
        ret.mul_l(b)
      end
      b.mul(b)
      p >>= 1
    end
    return ret
  end
end
0