結果

問題 No.1515 Making Many Multiples
ユーザー koba-e964koba-e964
提出日時 2021-11-19 00:21:55
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 2,051 bytes
コンパイル時間 3,656 ms
コンパイル使用メモリ 153,556 KB
実行使用メモリ 17,788 KB
最終ジャッジ日時 2023-08-27 19:17:48
合計ジャッジ時間 5,643 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 190 ms
17,496 KB
testcase_03 AC 200 ms
17,788 KB
testcase_04 AC 191 ms
17,484 KB
testcase_05 WA -
testcase_06 AC 163 ms
17,752 KB
testcase_07 AC 172 ms
17,756 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 23 ms
12,204 KB
testcase_19 AC 6 ms
6,584 KB
testcase_20 WA -
testcase_21 AC 116 ms
16,964 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1 ms
4,376 KB
testcase_25 AC 1 ms
4,384 KB
testcase_26 AC 1 ms
4,376 KB
testcase_27 AC 171 ms
17,316 KB
testcase_28 AC 94 ms
17,472 KB
testcase_29 AC 6 ms
4,380 KB
testcase_30 AC 15 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::*;
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

fn main() {
    input! {
        n: usize, k: usize, x: usize, y: usize,
        a: [usize; n],
    }
    const INF: i32 = 1 << 28;
    let mut dp = vec![vec![-INF; k]; k];
    dp[x % k][y % k] = 0;
    let mut row = vec![-INF; k];
    let mut col = vec![-INF; k];
    row[x % k] = 0;
    col[y % k] = 0;
    for &a in &a {
        let a = a % k;
        let mut delay = vec![];
        for b in 0..k {
            let rest = (2 * k - a - b) % k;
            delay.push((b, rest, dp[b][rest] + 1));
        }
        for b in 0..k {
            let mut ma = max(row[b], col[b]);
            let rest = (2 * k - a - b) % k;
            ma = max(ma, max(dp[rest][b], dp[b][rest]) + 1);
            dp[a][b] = ma;
        }
        for b in 0..k {
            row[a] = max(row[a], dp[a][b]);
            col[b] = max(col[b], dp[a][b]);
        }
        for (i, j, val) in delay {
            dp[i][j] = max(dp[i][j], val);
            row[i] = max(row[i], dp[i][j]);
            col[j] = max(col[j], dp[i][j]);
        }
    }
    let ans = row.iter().max().unwrap();
    println!("{}", ans);
}
0