結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー SSRSSSRS
提出日時 2021-07-30 20:42:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,231 bytes
コンパイル時間 1,665 ms
コンパイル使用メモリ 168,904 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 22:33:55
合計ジャッジ時間 3,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  string K;
  cin >> N >> K;
  vector<int> c(10);
  c[0] = 0;
  for (int i = 1; i < 10; i++){
    cin >> c[i];
  }
  if (K.size() < N){
    for (int i = 0; i < 10; i++){
      for (int j = 0; j < c[i]; j++){
        cout << i;
      }
    }
    cout << endl;
  } else if (K.size() > N){
    cout << -1 << endl;
  } else {
    for (int i = 0; i < N; i++){
      c[K[i] - '0']--;
    }
    bool ok = false;
    for (int i = N - 1; i >= 0; i--){
      c[K[i] - '0']++;
      for (int j = K[i] - '0' + 1; j < 10; j++){
        c[j]--;
        bool ok2 = true;
        for (int k = 0; k < 10; k++){
          if (c[k] < 0){
            ok2 = false;
          }
        }
        if (ok2){
          string ans;
          for (int k = 0; k < i; k++){
            ans += K[k];
          }
          ans += (char) ('0' + j);
          for (int k = 0; k < 10; k++){
            for (int l = 0; l < c[k]; l++){
              ans += (char) ('0' + k);
            }
          }
          cout << ans << endl;
          ok = true;
          break;
        }
        c[j]++;
      }
      if (ok){
        break;
      }
    }
    if (!ok){
      cout << -1 << endl;
    }
  }
}
0