結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー mono_0812mono_0812
提出日時 2023-08-04 21:36:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 2,136 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 116,932 KB
最終ジャッジ日時 2024-12-20 02:30:04
合計ジャッジ時間 8,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
91,976 KB
testcase_01 AC 152 ms
92,092 KB
testcase_02 AC 152 ms
92,004 KB
testcase_03 AC 204 ms
109,060 KB
testcase_04 AC 172 ms
92,636 KB
testcase_05 AC 226 ms
116,932 KB
testcase_06 AC 188 ms
99,552 KB
testcase_07 AC 178 ms
92,880 KB
testcase_08 AC 172 ms
92,712 KB
testcase_09 AC 195 ms
101,204 KB
testcase_10 AC 206 ms
107,824 KB
testcase_11 AC 189 ms
99,996 KB
testcase_12 AC 176 ms
92,876 KB
testcase_13 AC 193 ms
102,028 KB
testcase_14 AC 206 ms
109,192 KB
testcase_15 AC 189 ms
101,500 KB
testcase_16 AC 171 ms
92,640 KB
testcase_17 AC 195 ms
104,612 KB
testcase_18 AC 189 ms
100,692 KB
testcase_19 AC 201 ms
107,016 KB
testcase_20 AC 193 ms
104,008 KB
testcase_21 AC 167 ms
92,448 KB
testcase_22 AC 183 ms
92,796 KB
testcase_23 AC 170 ms
92,520 KB
testcase_24 AC 172 ms
92,852 KB
testcase_25 AC 200 ms
106,664 KB
testcase_26 AC 177 ms
92,380 KB
testcase_27 AC 202 ms
107,384 KB
testcase_28 AC 193 ms
102,424 KB
testcase_29 AC 176 ms
92,444 KB
testcase_30 AC 169 ms
92,488 KB
testcase_31 AC 205 ms
107,728 KB
testcase_32 AC 174 ms
92,364 KB
testcase_33 AC 159 ms
92,004 KB
testcase_34 AC 177 ms
92,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

############################################################################################
import bisect,collections,copy,heapq,itertools,math,string,sys,queue,time,random
from decimal import Decimal
def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return list(map(int,input().split()))
def LIIS(): return list(map(int,input().split()))

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

import math

def prime_numbers(n):
    prime = [True for i in range(n+1)]
    prime[0] = False
    prime[1] = False

    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False
    numbers=[]
    for i in range(2,n+1):
        if prime[i]:
            numbers.append(i)

    return numbers

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])
 
    if temp!=1:
        arr.append([temp, 1])
 
    if arr==[]:
        arr.append([n, 1])
 
    return arr
 
INF=float("inf")
MOD=998244353
MOD2=10**9+7
sys.setrecursionlimit(500005)
def bit_count(x):
    return bin(x).count("1")
def yesno(f):
    if f:print("Yes")
    else:print("No")
####################################################
n,k=IIS()
m1=II()
A=LIIS()
m2=II()
B=LIIS()
li=[0 for i in range(n+1)]
for i in A:
    li[i]=-1
for i in B:
    li[i]=1
dp=[[0]*2 for i in range(n+1)]
dp[0][0]=1
for i in range(n):
    for j in (i+1,i+k):
        if j<=n:
            if li[j]==1:
                dp[j][0]|=dp[i][0]|dp[i][1]
            if li[j]==0:
                dp[j][1]|=dp[i][1]
                dp[j][0]|=dp[i][0]
            if li[j]==-1:
                dp[j][1]|=dp[i][0]|dp[i][1]
yesno(dp[n][0])
0