#include #include #define for_int(i,a,b) for(int i=(a);i<=(b);++i) #define rep_int(i,a,b) for(int i=(a);i>=(b);--i) #define for_ll(i,a,b) for(ll i=(a);i<=(b);++i) #define rep_ll(i,a,b) for(ll i=(a);i>=(b);--i) #define Ios std::ios::sync_with_stdio(false),std::cin.tie(0) #define ull unsigned long long #define ll long long #define db double #define PII std::pair #define PLI std::pair template void chkmax(T& a, T b) { a > b ? (a = a) : (a = b); } template void chkmin(T& a, T b) { a > b ? (a = b) : (a = a); } template T min(T a, T b) { return a > b ? b : a; } template T max(T a, T b) { return a < b ? b : a; } template T abs(T a) { return a < 0 ? -a : a; } //using namespace std; /* 1.注意边界情况 2.优先考虑时间复杂度 !!! 3.求最大值时,答案应至多初始化为INT_MIN;求最小值时,答案应至少初始化为INT_MAX 4.遇事不决先暴力 5.代码要写简洁 6.计数题要开long long */ //快速IO template inline bool rd(T& ret) { char c; int sgn; if (c = getchar(), c == EOF) return 0; while (c != '-' && (c < '0' || c > '9')) c = getchar(); sgn = (c == '-') ? -1 : 1; ret = (c == '-') ? 0 : (c - '0'); while (c = getchar(), c >= '0' && c <= '9') ret = ret * 10 + (c - '0'); ret *= sgn; return true; } template inline void print(T x) { if (x > 9) print(x / 10); putchar(x % 10 + '0'); return; } using std::vector; using std::queue; using std::string; using std::map; using std::unordered_map; using std::priority_queue; using std::cout; using std::cin; const int N = 5e5 + 5; char k[N], res[N]; int n, a[10]; bool solve(int st) { while (st <= n) { int tmp = k[st] - '0'; if (a[tmp]) res[st] = k[st], --a[tmp], ++st; else { int idx1 = -1; for(int j = tmp + 1 ; j <= 9 ; ++j) if (a[j]) { idx1 = j; break; } int idx2 = -1; for(int j = res[st - 1] - '0' + 1; j <= 9 ; ++j) if (a[j]) { idx2 = j; break; } if (idx1 == -1 && idx2 == -1) return false; if (idx1 != -1){ res[st++] = idx1 + '0'; --a[idx1]; for (int i = 1; i <= 9; ++i) while (a[i]) res[st++] = i + '0', --a[i]; return true; } else { ++a[res[st - 1] - '0']; res[st - 1] = idx2 + '0'; --a[idx2]; for (int i = 1; i <= 9; ++i) while (a[i]) res[st++] = i + '0', --a[i]; return true; } } } return true; } int main() { rd(n); k[0] = '0'; scanf("%s", k + 1); for (int i = 1; i <= 9; ++i) rd(a[i]); int m = strlen(k + 1); k[m] ++; int idx = m; while (k[idx] > '9') k[idx] = '0', --idx, k[idx] ++; int st = min(idx, 1); m = m - st + 1; if (m > n) { puts("-1"); return 0; } else if(m < n){ idx = 1; for (int i = 1; i <= 9; ++i) while (a[i]) res[idx++] = i + '0', --a[i]; printf("%s\n", res + 1); return 0; } if (st == 0) for (int i = m; ~i; --i) k[i + 1] = k[i]; if (!solve(1)) puts("-1"); else printf("%s\n", res + 1); return 0; }