結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー kakel-sankakel-san
提出日時 2023-08-04 21:51:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 1,802 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 115,604 KB
実行使用メモリ 39,636 KB
最終ジャッジ日時 2024-12-20 02:38:56
合計ジャッジ時間 5,278 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,092 KB
testcase_01 AC 30 ms
27,256 KB
testcase_02 AC 30 ms
25,216 KB
testcase_03 AC 62 ms
30,584 KB
testcase_04 AC 34 ms
25,612 KB
testcase_05 AC 86 ms
39,636 KB
testcase_06 AC 47 ms
29,556 KB
testcase_07 AC 38 ms
28,448 KB
testcase_08 AC 41 ms
26,284 KB
testcase_09 AC 46 ms
29,432 KB
testcase_10 AC 59 ms
28,204 KB
testcase_11 AC 50 ms
30,048 KB
testcase_12 AC 39 ms
26,548 KB
testcase_13 AC 36 ms
27,508 KB
testcase_14 AC 37 ms
25,704 KB
testcase_15 AC 35 ms
25,464 KB
testcase_16 AC 34 ms
25,400 KB
testcase_17 AC 36 ms
23,536 KB
testcase_18 AC 35 ms
27,480 KB
testcase_19 AC 37 ms
25,848 KB
testcase_20 AC 36 ms
27,616 KB
testcase_21 AC 33 ms
25,780 KB
testcase_22 AC 35 ms
25,584 KB
testcase_23 AC 36 ms
27,744 KB
testcase_24 AC 34 ms
25,592 KB
testcase_25 AC 37 ms
25,448 KB
testcase_26 AC 37 ms
27,236 KB
testcase_27 AC 40 ms
27,624 KB
testcase_28 AC 35 ms
25,716 KB
testcase_29 AC 35 ms
27,500 KB
testcase_30 AC 35 ms
25,472 KB
testcase_31 AC 36 ms
27,496 KB
testcase_32 AC 34 ms
23,664 KB
testcase_33 AC 29 ms
25,008 KB
testcase_34 AC 36 ms
27,700 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var m1 = NN;
        var a = new int[0];
        if (m1 > 0) a = NList;
        else ReadLine();
        var m2 = NN;
        var b = new int[0];
        if (m2 > 0) b = NList;
        else ReadLine();
        var dirty = new bool[n + 1];
        foreach (var ai in a) dirty[ai] = true;
        var clean = new bool[n + 1];
        foreach (var bi in b) clean[bi] = true;
        var dp0 = new bool[n + 1];
        var dp1 = new bool[n + 1];
        dp0[0] = true;
        for (var i = 0; i < n; ++i)
        {
            if (dirty[i + 1])
            {
                dp1[i + 1] |= dp0[i] | dp1[i];
            }
            else if (clean[i + 1])
            {
                dp0[i + 1] |= dp0[i] | dp1[i];
            }
            else
            {
                dp0[i + 1] |= dp0[i];
                dp1[i + 1] |= dp1[i];
            }
            if (i + k <= n)
            {
                if (dirty[i + k])
                {
                    dp1[i + k] |= dp0[i] | dp1[i];
                }
                else if (clean[i + k])
                {
                    dp0[i + k] |= dp0[i] | dp1[i];
                }
                else
                {
                    dp0[i + k] |= dp0[i];
                    dp1[i + k] |= dp1[i];
                }
            }
        }
        WriteLine(dp0[n] ? "Yes" : "No");
    }
}
0