結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-08 14:14:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 1,660 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 205,552 KB
実行使用メモリ 39,388 KB
最終ジャッジ日時 2024-05-08 14:14:19
合計ジャッジ時間 4,171 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 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 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 70 ms
39,128 KB
testcase_17 AC 79 ms
38,876 KB
testcase_18 AC 51 ms
39,388 KB
testcase_19 AC 53 ms
39,380 KB
testcase_20 AC 85 ms
38,872 KB
testcase_21 AC 85 ms
38,872 KB
testcase_22 AC 22 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 74 ms
31,708 KB
testcase_25 AC 70 ms
38,872 KB
testcase_26 AC 51 ms
39,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n;
    string k;
    cin >> n >> k;
    vector<int> c(10);
    for (int i = 1; i <= 9; i++) {
        cin >> c[i];
    }
    if (n > k.size()) {
        for (int i = 1; i <= 9; i++) {
            for (int j = 0; j < c[i]; j++) {
                cout << i;
            }
        }
        cout << endl;
        return 0;
    }
    if (n < k.size()) {
        cout << -1 << endl;
        return 0;
    }
    vector<vector<int>> cum(n + 1, vector<int>(10));
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < 10; j++) {
            cum[i + 1][j] = cum[i][j] + (k[i] - '0' == j);
        }
    }
    for (int i = n - 1; i >= 0; i--) {
        bool is_ok = true;
        vector<int> res(10);
        for (int j = 0; j < 10; j++) {
            res[j] = c[j] - cum[i][j];
            if (res[j] < 0) {
                is_ok = false;
                break;
            }
        }
        if (!is_ok) {
            continue;
        }
        is_ok = false;
        int l = -1;
        for (int j = (k[i] - '0') + 1; j < 10; j++) {
            if (res[j] > 0) {
                is_ok = true;
                l = j;
                break;
            }
        }
        if (!is_ok) {
            continue;
        }
        res[l]--;
        cout << k.substr(0, i);
        cout << l;
        for (int j = 1; j < 10; j++) {
            for (int m = 0; m < res[j]; m++) {
                cout << j;
            }
        }
        cout << endl;

        return 0;
    }
    cout << -1 << endl;
}
0