結果

問題 No.1111 コード進行
ユーザー yuruhiyayuruhiya
提出日時 2020-07-11 18:04:16
言語 Crystal
(1.11.2)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 1,641 bytes
コンパイル時間 11,668 ms
コンパイル使用メモリ 296,012 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 20:33:50
合計ジャッジ時間 14,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 7 ms
6,940 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 8 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 6 ms
6,940 KB
testcase_14 AC 10 ms
6,944 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 8 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 10 ms
6,944 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 6 ms
6,940 KB
testcase_25 AC 12 ms
6,944 KB
testcase_26 AC 8 ms
6,944 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 68 ms
6,944 KB
testcase_29 AC 41 ms
6,940 KB
testcase_30 AC 59 ms
6,944 KB
testcase_31 AC 12 ms
6,944 KB
testcase_32 AC 78 ms
6,940 KB
testcase_33 AC 64 ms
6,940 KB
testcase_34 AC 52 ms
6,944 KB
testcase_35 AC 72 ms
6,940 KB
testcase_36 AC 139 ms
6,940 KB
testcase_37 AC 49 ms
6,940 KB
testcase_38 AC 37 ms
6,944 KB
testcase_39 AC 111 ms
6,940 KB
testcase_40 AC 122 ms
6,944 KB
testcase_41 AC 85 ms
6,940 KB
testcase_42 AC 72 ms
6,940 KB
testcase_43 AC 66 ms
6,940 KB
testcase_44 AC 26 ms
6,940 KB
testcase_45 AC 70 ms
6,944 KB
testcase_46 AC 14 ms
6,940 KB
testcase_47 AC 366 ms
6,944 KB
testcase_48 AC 14 ms
6,940 KB
testcase_49 AC 16 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
In Main.cr:102:6

 102 | ii.product(jj) do |from, sum|
          ^------
Warning: Deprecated Array(Int32)#product. Use `Indexable#each_cartesian(*others : Indexable, &block)` instead

A total of 1 warnings were found.

ソースコード

diff #

struct ModInt
  @@MOD = 1_000_000_007i64

  def self.mod
    @@MOD
  end

  def self.zero
    ModInt.new(0)
  end

  def initialize(n)
    @n = n.to_i64 % @@MOD
  end

  getter n : Int64

  def + : self
    self
  end

  def - : self
    ModInt.new(n != 0 ? @@MOD - @n : 0)
  end

  def +(m)
    ModInt.new(@n + m.to_i64 % @@MOD)
  end

  def -(m)
    ModInt.new(@n - m.to_i64 % @@MOD)
  end

  def *(m)
    ModInt.new(@n * m.to_i64 % @@MOD)
  end

  def /(m)
    raise DivisionByZeroError.new if m == 0
    a, b, u, v = m.to_i64, @@MOD, 1i64, 0i64
    while b != 0
      t = a // b
      a -= t * b
      a, b = b, a
      u -= t * v
      u, v = v, u
    end
    ModInt.new(@n * u)
  end

  def //(m)
    self / m
  end

  def **(m)
    t, res = self, ModInt.new(1)
    while m > 0
      res *= t if m.odd?
      t *= t
      m >>= 1
    end
    res
  end

  def ==(m)
    @n == m.to_i64
  end

  def !=(m)
    @n != m.to_i64
  end

  def succ
    self + 1
  end

  def pred
    self - 1
  end

  def to_i64 : Int64
    @n
  end

  delegate to_s, to: @n
  delegate inspect, to: @n
end

n, m, k = read_line.split.map &.to_i
MAX_CODE = 300
code = Array.new(MAX_CODE) { [] of Tuple(Int32, Int32) }
m.times do
  p, q, c = read_line.split.map &.to_i
  code[p - 1] << {q - 1, c}
end

dp = (1..MAX_CODE).map { [ModInt.new(1)] + [ModInt.zero] * k }
n.pred.times do
  dp2 = (0...MAX_CODE).map { [ModInt.zero] * (k + 1) }
  ii = (0...MAX_CODE).to_a
  jj = (0..k).to_a
  ii.product(jj) do |from, sum|
    code[from].each do |to, cost|
      dp2[to][sum + cost] += dp[from][sum] if sum + cost <= k
    end
  end
	dp = dp2
end
puts dp.sum { |a| a[k] }
0