結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー kiyoshi0205kiyoshi0205
提出日時 2021-07-30 22:34:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 1,951 bytes
コンパイル時間 2,568 ms
コンパイル使用メモリ 186,332 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 01:15:10
合計ジャッジ時間 3,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 9 ms
5,376 KB
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 7 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 9 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 8 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using datas=pair<ll,ll>;
using ddatas=pair<long double,long double>;
using tdata=pair<ll,datas>;
using vec=vector<ll>;
using mat=vector<vec>;
using pvec=vector<datas>;
using pmat=vector<pvec>;
#define For(i,a,b) for(i=a;i<(ll)b;++i)
#define bFor(i,b,a) for(i=b,--i;i>=(ll)a;--i)
#define rep(i,N) For(i,0,N)
#define rep1(i,N) For(i,1,N)
#define brep(i,N) bFor(i,N,0)
#define brep1(i,N) bFor(i,N,1)
#define all(v) (v).begin(),(v).end()
#define allr(v) (v).rbegin(),(v).rend()
#define vsort(v) sort(all(v))
#define vrsort(v) sort(allr(v))
#define uniq(v) vsort(v);(v).erase(unique(all(v)),(v).end())
#define endl "\n"
#define print(x) cout<<x<<endl

int N,K;
string s,t;
int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  int i,j;
  cin>>N>>s;
  K=s.size();
  if(K!=N){
    if(K>N)print(-1);
    else{
      for(int i=0;i<9;++i){
        cin>>j;
        cout<<string(j,'1'+i);
      }
      cout<<'\n';
    }
    return 0;
  }
  array<int,10> v;
  rep(i,9){
    cin>>v[i+1];
    t+=string(v[i+1],'1'+i);
  }
  reverse(all(t));
  if(s>=t){
    print(-1);
    return 0;
  }
  t.clear();
  rep(i,N){
    if(v[s[i]-'0']){
      t+=s[i];
      v[s[i]-'0']--;
      continue;
    }
    For(j,s[i]-'0',10)if(v[j])break;
    if(j<10){
      t+='0'+j;
      v[j]--;
      rep(i,10)t+=string(v[i],'0'+i);
    }else{
      while(i--){
        v[s[i]-'0']++;
        t.pop_back();
        For(j,s[i]-'0'+1,10)if(v[j])break;
        if(j<10){
          t+='0'+j;
          v[j]--;
          rep(i,10)t+=string(v[i],'0'+i);
          break;
        }
      }
    }
    print(t);
    return 0;
  }
  while(i--){
    v[s[i]-'0']++;
    t.pop_back();
    For(j,s[i]-'0'+1,10)if(v[j])break;
    if(j<10){
      t+='0'+j;
      v[j]--;
      rep(i,10)t+=string(v[i],'0'+i);
      break;
    }
  }
  print(t);
}
0