結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー phsplsphspls
提出日時 2022-10-11 11:15:06
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,656 bytes
コンパイル時間 12,177 ms
コンパイル使用メモリ 398,400 KB
実行使用メモリ 38,824 KB
最終ジャッジ日時 2024-06-25 06:43:40
合計ジャッジ時間 14,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 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 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 0 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 114 ms
38,824 KB
testcase_17 AC 114 ms
38,692 KB
testcase_18 AC 114 ms
38,824 KB
testcase_19 AC 113 ms
38,568 KB
testcase_20 AC 112 ms
38,700 KB
testcase_21 AC 112 ms
38,696 KB
testcase_22 AC 7 ms
7,424 KB
testcase_23 AC 6 ms
7,296 KB
testcase_24 AC 94 ms
32,160 KB
testcase_25 AC 57 ms
34,524 KB
testcase_26 AC 111 ms
38,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut nk = String::new();
    std::io::stdin().read_line(&mut nk).ok();
    let nk: Vec<&str> = nk.trim().split_whitespace().collect();
    let n = nk[0].parse::<usize>().unwrap();
    let k = nk[1].chars().map(|c| c as usize - '0' as usize).collect::<Vec<_>>();
    let mut c = String::new();
    std::io::stdin().read_line(&mut c).ok();
    let mut c: Vec<usize> = c.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    c.insert(0, 0);
    if k.len() < n {
        println!("{}", (0..10).map(|i| i.to_string().repeat(c[i])).collect::<Vec<_>>().join(""));
        return;
    }
    let maxval = (0..10).rev().map(|i| i.to_string().repeat(c[i])).collect::<Vec<_>>().join("");
    if k.len() > n || k.iter().map(|&c| c.to_string()).collect::<Vec<_>>().join("") >= maxval {
        println!("-1");
        return;
    }
    let mut result = vec![];
    let mut idx = 0usize;
    while idx < n && c[k[idx]] > 0 {
        result.push(k[idx]);
        c[k[idx]] -= 1;
        idx += 1;
    }
    if idx == n {
        idx -= 1;
        c[result.pop().unwrap()] += 1;
    }
    loop {
        let mut flg = false;
        for i in k[idx]+1..10 {
            if c[i] > 0 {
                result.push(i);
                idx += 1;
                c[i] -= 1;
                flg = true;
                break;
            }
        }
        if flg {
            break;
        } else {
            c[result.pop().unwrap()] += 1;
            idx -= 1;
        }
    }
    for i in 0..10 {
        for _ in 0..c[i] { result.push(i); }
    }
    println!("{}", result.iter().map(|v| v.to_string()).collect::<Vec<_>>().join(""));
}
0