結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー maguroflymagurofly
提出日時 2023-08-04 21:41:35
言語 Ruby
(3.3.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-05-10 07:13:18
合計ジャッジ時間 5,371 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,032 KB
testcase_01 AC 80 ms
12,032 KB
testcase_02 AC 82 ms
12,032 KB
testcase_03 AC 136 ms
19,584 KB
testcase_04 AC 91 ms
12,672 KB
testcase_05 AC 167 ms
24,704 KB
testcase_06 AC 103 ms
15,744 KB
testcase_07 AC 92 ms
13,056 KB
testcase_08 AC 99 ms
13,696 KB
testcase_09 AC 112 ms
15,616 KB
testcase_10 AC 133 ms
18,944 KB
testcase_11 AC 112 ms
16,000 KB
testcase_12 AC 97 ms
13,312 KB
testcase_13 AC 110 ms
14,720 KB
testcase_14 AC 124 ms
16,384 KB
testcase_15 AC 107 ms
14,464 KB
testcase_16 AC 95 ms
13,056 KB
testcase_17 AC 120 ms
15,232 KB
testcase_18 AC 109 ms
14,464 KB
testcase_19 AC 118 ms
15,872 KB
testcase_20 AC 111 ms
15,232 KB
testcase_21 AC 83 ms
12,288 KB
testcase_22 AC 94 ms
13,568 KB
testcase_23 AC 92 ms
13,184 KB
testcase_24 AC 96 ms
13,440 KB
testcase_25 AC 114 ms
15,744 KB
testcase_26 AC 96 ms
13,568 KB
testcase_27 AC 120 ms
16,000 KB
testcase_28 AC 109 ms
14,720 KB
testcase_29 AC 98 ms
13,696 KB
testcase_30 AC 81 ms
12,032 KB
testcase_31 AC 119 ms
16,128 KB
testcase_32 AC 95 ms
13,440 KB
testcase_33 AC 82 ms
12,160 KB
testcase_34 AC 97 ms
13,184 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