結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー simansiman
提出日時 2023-08-07 18:49:50
言語 Ruby
(3.3.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-05-10 07:26:55
合計ジャッジ時間 7,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 75 ms
12,288 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 191 ms
21,632 KB
testcase_04 AC 94 ms
12,928 KB
testcase_05 AC 277 ms
30,848 KB
testcase_06 AC 137 ms
16,384 KB
testcase_07 AC 101 ms
13,568 KB
testcase_08 AC 132 ms
15,488 KB
testcase_09 AC 164 ms
17,408 KB
testcase_10 AC 203 ms
20,048 KB
testcase_11 AC 134 ms
16,640 KB
testcase_12 AC 107 ms
13,568 KB
testcase_13 AC 227 ms
19,200 KB
testcase_14 AC 330 ms
24,576 KB
testcase_15 AC 193 ms
19,328 KB
testcase_16 AC 131 ms
14,464 KB
testcase_17 AC 259 ms
21,248 KB
testcase_18 AC 210 ms
18,688 KB
testcase_19 AC 298 ms
22,656 KB
testcase_20 AC 257 ms
20,992 KB
testcase_21 AC 77 ms
12,160 KB
testcase_22 AC 170 ms
16,512 KB
testcase_23 AC 138 ms
15,744 KB
testcase_24 AC 162 ms
16,256 KB
testcase_25 AC 283 ms
22,272 KB
testcase_26 AC 176 ms
16,512 KB
testcase_27 AC 293 ms
22,784 KB
testcase_28 AC 235 ms
19,584 KB
testcase_29 AC 177 ms
16,640 KB
testcase_30 AC 83 ms
12,416 KB
testcase_31 AC 313 ms
23,168 KB
testcase_32 AC 168 ms
16,256 KB
testcase_33 AC 78 ms
12,160 KB
testcase_34 AC 141 ms
15,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split.map(&:to_i)
M1 = gets.to_i
A = gets.split.map(&:to_i)
M2 = gets.to_i
B = gets.split.map(&:to_i)

cleaned = Array.new(N + 1, false)
dirty = Array.new(N + 1, false)

A.each do |a|
  dirty[a] = true
end

B.each do |b|
  cleaned[b] = true
end

dp = Array.new(N + 1) { Array.new(2, false) }
dp[0][0] = true
steps = [1, K]

N.times do |i|
  2.times do |j|
    next if not dp[i][j]

    steps.each do |s|
      ni = i + s
      next if ni > N

      if dirty[ni]
        dp[ni][1] = true
      elsif cleaned[ni]
        dp[ni][0] = true
      else
        dp[ni][j] = dp[i][j]
      end
    end
  end
end

if dp[N][0]
  puts 'Yes'
else
  puts 'No'
end
0