結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-08 14:12:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,379 bytes
コンパイル時間 2,727 ms
コンパイル使用メモリ 205,284 KB
実行使用メモリ 39,384 KB
最終ジャッジ日時 2024-05-08 14:12:54
合計ジャッジ時間 5,137 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 72 ms
39,108 KB
testcase_17 AC 79 ms
39,000 KB
testcase_18 AC 53 ms
39,260 KB
testcase_19 AC 52 ms
39,384 KB
testcase_20 AC 83 ms
38,872 KB
testcase_21 AC 83 ms
39,000 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 74 ms
31,700 KB
testcase_25 AC 68 ms
38,876 KB
testcase_26 AC 56 ms
39,232 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];
    }
    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