結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー hato336hato336
提出日時 2023-08-05 08:55:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,073 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 123,480 KB
最終ジャッジ日時 2024-05-10 07:24:46
合計ジャッジ時間 6,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
85,676 KB
testcase_01 AC 112 ms
85,704 KB
testcase_02 AC 111 ms
85,772 KB
testcase_03 AC 184 ms
118,120 KB
testcase_04 AC 139 ms
90,080 KB
testcase_05 AC 211 ms
123,480 KB
testcase_06 AC 153 ms
98,120 KB
testcase_07 AC 143 ms
90,004 KB
testcase_08 AC 149 ms
90,608 KB
testcase_09 AC 158 ms
98,052 KB
testcase_10 AC 192 ms
115,608 KB
testcase_11 AC 153 ms
99,672 KB
testcase_12 AC 145 ms
90,204 KB
testcase_13 AC 139 ms
90,368 KB
testcase_14 AC 145 ms
91,436 KB
testcase_15 AC 132 ms
90,544 KB
testcase_16 AC 136 ms
90,000 KB
testcase_17 AC 144 ms
91,244 KB
testcase_18 AC 144 ms
90,656 KB
testcase_19 AC 151 ms
91,500 KB
testcase_20 AC 145 ms
90,968 KB
testcase_21 AC 127 ms
89,880 KB
testcase_22 AC 139 ms
89,976 KB
testcase_23 AC 132 ms
90,456 KB
testcase_24 AC 137 ms
90,212 KB
testcase_25 AC 142 ms
91,232 KB
testcase_26 AC 139 ms
90,460 KB
testcase_27 AC 144 ms
91,320 KB
testcase_28 AC 148 ms
90,136 KB
testcase_29 AC 138 ms
90,392 KB
testcase_30 AC 133 ms
89,732 KB
testcase_31 AC 161 ms
91,340 KB
testcase_32 AC 144 ms
90,188 KB
testcase_33 AC 111 ms
85,668 KB
testcase_34 AC 137 ms
90,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)

#alist = list(map(int,input().split()))
#alist = []
#s = input()
n,k = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
m = int(input())
dirty = list(map(int,input().split())) if m != 0 else []
m = int(input())
mat = list(map(int,input().split())) if m != 0 else []

dp = [[0,0] for i in range(n+1)]
dp[0][0] = 1
dirty = set(dirty)
mat = set(mat)

for i in range(n):
    if i + 1 <= n:
        if i + 1 in dirty:
            dp[i+1][1] |= dp[i][0] | dp[i][1]
        elif i + 1 in mat:
            dp[i+1][0] |= dp[i][0] | dp[i][1]
        else:
            dp[i+1][0] |= dp[i][0]
            dp[i+1][1] |= dp[i][1]
    if i + k <= n:
        if i + k in dirty:
            dp[i+k][1] |= dp[i][0] | dp[i][1]
        elif i + k in mat:
            dp[i+k][0] |= dp[i][0] | dp[i][1]
        else:
            dp[i+k][0] |= dp[i][0]
            dp[i+k][1] |= dp[i][1]
print('Yes' if dp[n][0] else 'No')
0