結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー satoyuyapyaasatoyuyapyaa
提出日時 2023-08-07 17:44:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,340 KB
最終ジャッジ日時 2024-05-10 07:26:28
合計ジャッジ時間 4,711 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 26 ms
11,008 KB
testcase_03 AC 129 ms
24,076 KB
testcase_04 AC 42 ms
13,440 KB
testcase_05 AC 280 ms
46,340 KB
testcase_06 AC 96 ms
21,704 KB
testcase_07 AC 45 ms
13,440 KB
testcase_08 AC 63 ms
15,432 KB
testcase_09 AC 103 ms
22,568 KB
testcase_10 AC 130 ms
22,464 KB
testcase_11 AC 77 ms
18,508 KB
testcase_12 AC 50 ms
13,824 KB
testcase_13 AC 135 ms
23,808 KB
testcase_14 AC 212 ms
32,640 KB
testcase_15 AC 118 ms
23,680 KB
testcase_16 AC 67 ms
15,744 KB
testcase_17 AC 165 ms
26,752 KB
testcase_18 AC 138 ms
22,784 KB
testcase_19 AC 195 ms
29,696 KB
testcase_20 AC 165 ms
26,752 KB
testcase_21 AC 29 ms
11,008 KB
testcase_22 AC 94 ms
18,688 KB
testcase_23 AC 70 ms
17,664 KB
testcase_24 AC 84 ms
18,304 KB
testcase_25 AC 178 ms
29,312 KB
testcase_26 AC 90 ms
19,072 KB
testcase_27 AC 191 ms
30,208 KB
testcase_28 AC 143 ms
24,320 KB
testcase_29 AC 90 ms
18,944 KB
testcase_30 AC 28 ms
11,136 KB
testcase_31 AC 192 ms
30,720 KB
testcase_32 AC 88 ms
18,432 KB
testcase_33 AC 24 ms
10,880 KB
testcase_34 AC 67 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n,k = map(int,input().split())
    dirty = [False] * (n+1)
    mat = [False] * (n+1)

    m1 = int(input())
    for Ai in map(int,input().split()):
        dirty[Ai] = True
    m2 = int(input())
    for Bi in map(int,input().split()):
        mat[Bi] = True

    #dp[a][dirty] a段目まで登り、靴が汚れている(dirty)かどうか 0汚れていない 1汚れている
    #遷移
    #dp[a+1][False] dp[a+1][k]

    dp = [[0 for _ in range(2)] for _ in range(n+1+k+1)]
    dp[0][0] = 1
    for i in range(n+1):
        for j in range(2):
            if dp[i][j] == 0:
                continue

            nxt = i+1
            if nxt > n:
                pass
            elif mat[nxt]:
                dp[nxt][0] = 1
            elif dirty[nxt]:
                dp[nxt][1] = 1
            else:
                dp[nxt][j] = 1

            nxt = i+k
            if nxt > n:
                pass
            elif mat[nxt]:
                dp[nxt][0] = 1
            elif dirty[nxt]:
                dp[nxt][1] = 1
            else:
                dp[nxt][j] = 1

    if dp[n][0]:
        print("Yes")
    else:
        print("No")
if __name__ == '__main__':
    main()
0