結果

問題 No.1607 Kth Maximum Card
ユーザー yuruhiyayuruhiya
提出日時 2021-07-17 14:40:47
言語 Crystal
(1.11.2)
結果
AC  
実行時間 702 ms / 3,500 ms
コード長 602 bytes
コンパイル時間 11,229 ms
コンパイル使用メモリ 295,696 KB
実行使用メモリ 39,672 KB
最終ジャッジ日時 2024-07-07 02:28:52
合計ジャッジ時間 20,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 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 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 672 ms
34,976 KB
testcase_09 AC 459 ms
30,936 KB
testcase_10 AC 630 ms
33,368 KB
testcase_11 AC 87 ms
11,008 KB
testcase_12 AC 425 ms
29,808 KB
testcase_13 AC 68 ms
7,040 KB
testcase_14 AC 82 ms
9,216 KB
testcase_15 AC 387 ms
26,808 KB
testcase_16 AC 65 ms
8,320 KB
testcase_17 AC 19 ms
6,944 KB
testcase_18 AC 225 ms
18,032 KB
testcase_19 AC 140 ms
14,100 KB
testcase_20 AC 185 ms
16,088 KB
testcase_21 AC 203 ms
16,384 KB
testcase_22 AC 680 ms
34,800 KB
testcase_23 AC 661 ms
34,052 KB
testcase_24 AC 158 ms
13,112 KB
testcase_25 AC 94 ms
9,856 KB
testcase_26 AC 116 ms
10,872 KB
testcase_27 AC 170 ms
13,312 KB
testcase_28 AC 133 ms
11,648 KB
testcase_29 AC 312 ms
24,048 KB
testcase_30 AC 702 ms
39,672 KB
testcase_31 AC 293 ms
22,124 KB
testcase_32 AC 100 ms
9,344 KB
testcase_33 AC 96 ms
9,344 KB
testcase_34 AC 160 ms
9,472 KB
testcase_35 AC 108 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = read_line.split.map(&.to_i)
g = Array.new(n) { [] of {Int32, Int32} }
m.times do
  u, v, c = read_line.split.map(&.to_i.pred)
  g[u] << {v, c + 1}
  g[v] << {u, c + 1}
end
puts (0..2*10**5).bsearch { |x|
  que = Deque{0}
  dist = Array(Int32?).new(n, nil)
  dist[0] = 0
  while v = que.shift?
    d = dist[v].not_nil!
    g[v].each do |u, c|
      cost = c > x ? 1 : 0
      d2 = d + cost
      if (d3 = dist[u]).nil? || d2 < d3
        dist[u] = d2
        if cost == 0
          que.unshift u
        else
          que.push u
        end
      end
    end
  end
  dist.last.not_nil! < k
}
0