結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー maguroflymagurofly
提出日時 2023-08-04 21:40:15
言語 Ruby
(3.3.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 11,488 KB
実行使用メモリ 27,124 KB
最終ジャッジ日時 2023-08-23 01:42:00
合計ジャッジ時間 5,837 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
15,272 KB
testcase_01 AC 83 ms
15,164 KB
testcase_02 AC 83 ms
15,072 KB
testcase_03 AC 131 ms
22,308 KB
testcase_04 AC 89 ms
15,808 KB
testcase_05 AC 167 ms
27,124 KB
testcase_06 AC 108 ms
18,500 KB
testcase_07 AC 93 ms
16,244 KB
testcase_08 AC 98 ms
16,660 KB
testcase_09 AC 108 ms
18,744 KB
testcase_10 AC 129 ms
21,680 KB
testcase_11 AC 108 ms
19,000 KB
testcase_12 AC 91 ms
16,040 KB
testcase_13 AC 108 ms
17,764 KB
testcase_14 AC 124 ms
19,520 KB
testcase_15 AC 105 ms
17,756 KB
testcase_16 AC 93 ms
16,168 KB
testcase_17 AC 114 ms
18,244 KB
testcase_18 AC 106 ms
17,516 KB
testcase_19 AC 118 ms
19,052 KB
testcase_20 AC 111 ms
18,316 KB
testcase_21 AC 82 ms
15,088 KB
testcase_22 AC 99 ms
16,776 KB
testcase_23 AC 95 ms
16,356 KB
testcase_24 AC 98 ms
16,548 KB
testcase_25 AC 117 ms
18,820 KB
testcase_26 AC 97 ms
16,712 KB
testcase_27 AC 117 ms
19,196 KB
testcase_28 AC 109 ms
17,676 KB
testcase_29 AC 97 ms
16,788 KB
testcase_30 AC 82 ms
15,072 KB
testcase_31 AC 119 ms
19,104 KB
testcase_32 AC 95 ms
16,792 KB
testcase_33 AC 80 ms
14,964 KB
testcase_34 AC 93 ms
16,092 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)

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