結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー haihamabossuhaihamabossu
提出日時 2023-08-04 22:18:44
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 2,409 bytes
コンパイル時間 12,851 ms
コンパイル使用メモリ 393,980 KB
実行使用メモリ 12,324 KB
最終ジャッジ日時 2024-12-20 02:41:59
合計ジャッジ時間 14,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 19 ms
8,144 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 32 ms
12,296 KB
testcase_06 AC 10 ms
6,816 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 7 ms
6,816 KB
testcase_09 AC 12 ms
6,816 KB
testcase_10 AC 20 ms
7,616 KB
testcase_11 AC 11 ms
6,820 KB
testcase_12 AC 5 ms
6,816 KB
testcase_13 AC 13 ms
8,192 KB
testcase_14 AC 18 ms
12,324 KB
testcase_15 AC 11 ms
7,992 KB
testcase_16 AC 5 ms
6,816 KB
testcase_17 AC 12 ms
9,632 KB
testcase_18 AC 11 ms
7,680 KB
testcase_19 AC 15 ms
11,004 KB
testcase_20 AC 13 ms
9,472 KB
testcase_21 AC 1 ms
6,816 KB
testcase_22 AC 8 ms
6,816 KB
testcase_23 AC 7 ms
6,816 KB
testcase_24 AC 7 ms
6,816 KB
testcase_25 AC 14 ms
10,772 KB
testcase_26 AC 8 ms
6,820 KB
testcase_27 AC 16 ms
11,216 KB
testcase_28 AC 12 ms
8,320 KB
testcase_29 AC 8 ms
6,820 KB
testcase_30 AC 1 ms
6,816 KB
testcase_31 AC 16 ms
11,380 KB
testcase_32 AC 8 ms
6,816 KB
testcase_33 AC 1 ms
6,816 KB
testcase_34 AC 6 ms
6,816 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