結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー tentententen
提出日時 2023-08-07 18:00:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 2,281 bytes
コンパイル時間 3,468 ms
コンパイル使用メモリ 94,488 KB
実行使用メモリ 45,060 KB
最終ジャッジ日時 2024-05-10 07:26:42
合計ジャッジ時間 6,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,884 KB
testcase_01 AC 52 ms
37,012 KB
testcase_02 AC 52 ms
37,012 KB
testcase_03 AC 185 ms
43,948 KB
testcase_04 AC 98 ms
39,008 KB
testcase_05 AC 212 ms
45,060 KB
testcase_06 AC 161 ms
41,768 KB
testcase_07 AC 116 ms
39,712 KB
testcase_08 AC 128 ms
40,244 KB
testcase_09 AC 159 ms
41,640 KB
testcase_10 AC 195 ms
44,176 KB
testcase_11 AC 159 ms
42,260 KB
testcase_12 AC 117 ms
40,252 KB
testcase_13 AC 86 ms
38,280 KB
testcase_14 AC 71 ms
38,780 KB
testcase_15 AC 67 ms
37,572 KB
testcase_16 AC 63 ms
38,032 KB
testcase_17 AC 87 ms
39,084 KB
testcase_18 AC 77 ms
38,200 KB
testcase_19 AC 86 ms
38,760 KB
testcase_20 AC 70 ms
37,444 KB
testcase_21 AC 56 ms
37,024 KB
testcase_22 AC 77 ms
38,168 KB
testcase_23 AC 59 ms
37,280 KB
testcase_24 AC 84 ms
38,132 KB
testcase_25 AC 77 ms
37,716 KB
testcase_26 AC 66 ms
37,264 KB
testcase_27 AC 68 ms
37,776 KB
testcase_28 AC 82 ms
38,608 KB
testcase_29 AC 59 ms
36,872 KB
testcase_30 AC 56 ms
37,288 KB
testcase_31 AC 98 ms
39,164 KB
testcase_32 AC 62 ms
37,048 KB
testcase_33 AC 53 ms
37,128 KB
testcase_34 AC 80 ms
38,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        int m1 = sc.nextInt();
        boolean[] dirties = new boolean[n + 1];
        for (int i = 0; i < m1; i++) {
            dirties[sc.nextInt()] = true;
        }
        int m2 = sc.nextInt();
        boolean[] mats = new boolean[n + 1];
        for (int i = 0; i < m2; i++) {
            mats[sc.nextInt()] = true;
        }
        boolean[] cleans = new boolean[n + 1];
        cleans[0] = true;
        for (int i = 1; i <= n; i++) {
            if (i < k) {
                cleans[i] = (cleans[i - 1] && !dirties[i]) || mats[i];
            } else {
                cleans[i] = ((cleans[i - 1] || cleans[i - k]) && !dirties[i]) || mats[i];
            }
        }
        if (cleans[n]) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0