結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー haihamabossuhaihamabossu
提出日時 2023-08-04 22:18:44
言語 Rust
(1.77.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 2,409 bytes
コンパイル時間 11,744 ms
コンパイル使用メモリ 401,848 KB
実行使用メモリ 12,344 KB
最終ジャッジ日時 2024-05-10 07:21:36
合計ジャッジ時間 13,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 19 ms
8,192 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 33 ms
12,328 KB
testcase_06 AC 11 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 13 ms
6,608 KB
testcase_10 AC 19 ms
7,616 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 12 ms
8,192 KB
testcase_14 AC 17 ms
12,344 KB
testcase_15 AC 11 ms
8,064 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 13 ms
9,588 KB
testcase_18 AC 11 ms
7,552 KB
testcase_19 AC 16 ms
11,008 KB
testcase_20 AC 12 ms
9,540 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 7 ms
5,632 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 8 ms
5,504 KB
testcase_25 AC 15 ms
10,752 KB
testcase_26 AC 9 ms
5,760 KB
testcase_27 AC 15 ms
11,244 KB
testcase_28 AC 12 ms
8,320 KB
testcase_29 AC 9 ms
5,760 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 16 ms
11,320 KB
testcase_32 AC 8 ms
5,504 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 6 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

pub mod scanner {

    pub struct Scanner {
        buf: Vec<String>,
    }

    impl Scanner {
        pub fn new() -> Self {
            Self { buf: vec![] }
        }

        pub fn new_from(source: &str) -> Self {
            let source = String::from(source);
            let buf = Self::split(source);
            Self { buf }
        }

        pub fn next<T: std::str::FromStr>(&mut self) -> T {
            loop {
                if let Some(x) = self.buf.pop() {
                    return x.parse().ok().expect("");
                }
                let mut source = String::new();
                std::io::stdin().read_line(&mut source).expect("");
                self.buf = Self::split(source);
            }
        }

        fn split(source: String) -> Vec<String> {
            source
                .split_whitespace()
                .rev()
                .map(String::from)
                .collect::<Vec<_>>()
        }
    }
}

use crate::scanner::Scanner;
use std::io::Write;
fn main() {
    let mut scanner = Scanner::new();
    let out = std::io::stdout();
    let mut out = std::io::BufWriter::new(out.lock());
    let t: usize = 1;
    for _ in 0..t {
        solve(&mut scanner, &mut out);
    }
}
fn solve(scanner: &mut Scanner, out: &mut std::io::BufWriter<std::io::StdoutLock>) {
    let n: usize = scanner.next();
    let k: usize = scanner.next();
    let mut a = vec![false; n + 1];
    let mut b = vec![false; n + 1];
    let m1: usize = scanner.next();
    for _ in 0..m1 {
        let x: usize = scanner.next();
        a[x] = true;
    }
    let m2: usize = scanner.next();
    for _ in 0..m2 {
        let x: usize = scanner.next();
        b[x] = true;
    }
    let mut dp = vec![vec![false; 2]; n + 1];
    dp[0][0] = true;
    let dist = vec![1, k];
    for i in 0..n {
        for &d in dist.iter() {
            let ni = i + d;
            if n < ni {
                continue;
            }
            for j in 0..2 {
                if dp[i][j] {
                    if a[ni] {
                        dp[ni][1] = true;
                    } else if b[ni] {
                        dp[ni][0] = true;
                    } else {
                        dp[ni][j] = true;
                    }
                }
            }
        }
    }
    if dp[n][0] {
        writeln!(out, "Yes").unwrap();
    } else {
        writeln!(out, "No").unwrap();
    }
}
0