結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー maguroflymagurofly
提出日時 2023-08-04 21:41:35
言語 Ruby
(3.3.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 11,180 KB
実行使用メモリ 27,068 KB
最終ジャッジ日時 2023-08-23 01:42:12
合計ジャッジ時間 5,403 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
15,144 KB
testcase_01 AC 86 ms
15,320 KB
testcase_02 AC 82 ms
15,276 KB
testcase_03 AC 133 ms
22,596 KB
testcase_04 AC 87 ms
15,808 KB
testcase_05 AC 164 ms
27,068 KB
testcase_06 AC 107 ms
18,584 KB
testcase_07 AC 89 ms
16,208 KB
testcase_08 AC 95 ms
16,992 KB
testcase_09 AC 109 ms
18,652 KB
testcase_10 AC 127 ms
21,764 KB
testcase_11 AC 109 ms
19,188 KB
testcase_12 AC 91 ms
16,416 KB
testcase_13 AC 107 ms
17,956 KB
testcase_14 AC 122 ms
19,588 KB
testcase_15 AC 105 ms
17,792 KB
testcase_16 AC 94 ms
16,220 KB
testcase_17 AC 113 ms
18,252 KB
testcase_18 AC 103 ms
17,552 KB
testcase_19 AC 119 ms
18,940 KB
testcase_20 AC 110 ms
18,452 KB
testcase_21 AC 82 ms
15,284 KB
testcase_22 AC 97 ms
16,776 KB
testcase_23 AC 92 ms
16,480 KB
testcase_24 AC 97 ms
16,612 KB
testcase_25 AC 114 ms
18,972 KB
testcase_26 AC 96 ms
16,612 KB
testcase_27 AC 115 ms
19,292 KB
testcase_28 AC 106 ms
17,928 KB
testcase_29 AC 96 ms
16,772 KB
testcase_30 AC 82 ms
15,288 KB
testcase_31 AC 117 ms
19,268 KB
testcase_32 AC 93 ms
16,852 KB
testcase_33 AC 81 ms
15,280 KB
testcase_34 AC 94 ms
16,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

input = $<.read.split.map(&:to_i)
N, K = input.shift(2)
M1 = input.shift
A = input.shift(M1)
M2 = input.shift
B = input.shift(M2)

dirty = [false] * (N + 1)
A.each do |a|
	dirty[a] = true
end

cleaner = [false] * (N + 1)
B.each do |b|
	cleaner[b] = true
end

dp = [false] * (N + 1)
dp[0] = true
(1 .. N).each do |i|
	if dirty[i]
		dp[i] = false
	elsif cleaner[i]
		dp[i] = true
	else
		dp[i] = dp[i - 1]
		dp[i] |= dp[i - K] if i >= K
	end
end

puts dp[N] ? "Yes" : "No"
0