#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ii pair<int, int>
#define f first
#define s second
#define pb push_back
#define mp make_pair
#define all(x) x.begin(), x.end()
#define sz(x) (int)x.size()
#define F0R(i, n) for (int i = 0; i < n; i++)
#define FOR(i, a, b) for (int i = a; i < b; i++)
#define inf 1000000010
ll solve(vector<int> need, int depth) {
if (depth > 12) return -1;
bool allZero = 1;
for (auto x : need) {
if (x != 0) allZero = 0;
}
if (allZero) return 0;
if (need.size() == 1) {
ll ans = 0;
bool needzero = false;
F0R(i, 10) {
int j = i;
if (need[0] & (1 << j)) {
if (j == 0) {
needzero = 1;
} else {
ans = ans*10+j;
if (needzero) {
ans = ans*10;
needzero = 0;
}
}
}
}
if (ans == 0 && needzero) return 10;
return ans;
}
ll ans = -1;
F0R(lastDigit, 10) {
vector<int> next;
int curDigit = lastDigit;
int curMask = 0;
for (auto x : need) {
curMask |= x & ~(1 << curDigit);
curDigit++;
if (curDigit == 10) {
next.pb(curMask);
curDigit = 0;
curMask = 0;
}
}
if (curDigit != 0) next.pb(curMask);
ll ans2 = solve(next, depth + 1);
if (ans2 == -1) continue;
ll nxt = ans2*10+lastDigit;
if (lastDigit == 0 && ans2 == 0) nxt = 10;
if (ans == -1 || nxt < ans) {
ans = nxt;
}
}
return ans;
}
int main() {
cin.tie(0)->sync_with_stdio(0);
int k; cin >> k;
vector<int> A;
F0R(i, k) {
int x; cin >> x;
A.pb(1 << x);
}
cout << solve(A, 1) << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Incorrect |
3 ms |
364 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Incorrect |
5 ms |
364 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
63 ms |
508 KB |
Output is correct |
3 |
Correct |
71 ms |
492 KB |
Output is correct |
4 |
Correct |
71 ms |
508 KB |
Output is correct |
5 |
Correct |
76 ms |
516 KB |
Output is correct |
6 |
Correct |
45 ms |
492 KB |
Output is correct |
7 |
Correct |
375 ms |
1072 KB |
Output is correct |
8 |
Correct |
228 ms |
880 KB |
Output is correct |
9 |
Correct |
569 ms |
1316 KB |
Output is correct |
10 |
Correct |
503 ms |
1260 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Incorrect |
4 ms |
364 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |