結果

問題 No.1818 6 Operations
ユーザー phsplsphspls
提出日時 2022-10-14 22:22:28
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 180 ms / 2,500 ms
コード長 1,458 bytes
コンパイル時間 10,546 ms
コンパイル使用メモリ 402,688 KB
実行使用メモリ 115,072 KB
最終ジャッジ日時 2024-06-26 15:32:13
合計ジャッジ時間 14,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 55 ms
35,712 KB
testcase_09 AC 108 ms
66,816 KB
testcase_10 AC 54 ms
36,096 KB
testcase_11 AC 49 ms
33,408 KB
testcase_12 AC 81 ms
53,376 KB
testcase_13 AC 67 ms
44,160 KB
testcase_14 AC 76 ms
50,304 KB
testcase_15 AC 90 ms
58,240 KB
testcase_16 AC 73 ms
48,512 KB
testcase_17 AC 110 ms
71,424 KB
testcase_18 AC 158 ms
99,712 KB
testcase_19 AC 152 ms
95,744 KB
testcase_20 AC 161 ms
100,992 KB
testcase_21 AC 160 ms
102,912 KB
testcase_22 AC 138 ms
88,448 KB
testcase_23 AC 171 ms
108,800 KB
testcase_24 AC 142 ms
91,264 KB
testcase_25 AC 180 ms
115,072 KB
testcase_26 AC 145 ms
93,312 KB
testcase_27 AC 153 ms
97,536 KB
testcase_28 AC 53 ms
35,840 KB
testcase_29 AC 49 ms
33,536 KB
testcase_30 AC 156 ms
99,328 KB
testcase_31 AC 166 ms
105,728 KB
testcase_32 AC 177 ms
110,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const INF: usize = 1usize << 60;

fn main() {
    let mut nm = String::new();
    std::io::stdin().read_line(&mut nm).ok();
    let nm: Vec<usize> = nm.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nm[0];
    let m = nm[1];
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let a: Vec<usize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let mut b = String::new();
    std::io::stdin().read_line(&mut b).ok();
    let b: Vec<usize> = b.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    let a = (0..n).flat_map(|i| {
            let mut ret = vec![1usize; a[i]+1];
            ret[0] = 0;
            ret
        })
        .collect::<Vec<_>>();
    let b = (0..m).flat_map(|i| {
            let mut ret = vec![1usize; b[i]+1];
            ret[0] = 0;
            ret
        })
        .collect::<Vec<_>>();
    let n = a.len();
    let m = b.len();
    let mut dp = vec![vec![INF; m+1]; n+1];
    dp[0][0] = 0;
    for i in 0..=n {
        for j in 0..=m {
            if i+1 <= n {
                dp[i+1][j] = dp[i+1][j].min(dp[i][j] + 1);
            }
            if j+1 <= m {
                dp[i][j+1] = dp[i][j+1].min(dp[i][j] + 1);
            }
            if i+1 <= n && j+1 <= m {
                dp[i+1][j+1] = dp[i+1][j+1].min(dp[i][j] + if a[i] == b[j] { 0 } else { 1 });
            }
        }
    }
    println!("{}", dp[n][m]);
}
0