# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
134447 | Kastanda | 수열 (BOI14_sequence) | C++11 | 538 ms | 856 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// ItnoE
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
inline ll Solve(vector < int > A, bool w, int dp)
{
int n = (int)A.size();
if (dp > 15)
return (-1);
if (n == 0)
return (!w);
if (n == 1)
{
if (A[0] == 0)
return (!w);
ll rs = 0;
for (int i = 1; i <= 9; i ++)
if (A[0] >> i & 1)
{
rs = rs * 10 + i;
if (A[0] & 1)
rs *= 10, A[0] ^= 1;
}
if (!rs)
rs = 10;
return (rs);
}
ll rs = LLONG_MAX;
for (int i = 0; i <= 9; i ++)
{
int d = i, k = 0;
vector < int > B;
for (int j = 0; j < n; j ++)
{
if (j && !d)
B.push_back(k), k = 0;
k |= A[j] ^ (A[j] & (1 << d));
d ++;
if (d >= 10)
d -= 10;
}
B.push_back(k);
ll rt = Solve(B, w | (i > 0), dp + 1);
if (rt != -1)
rs = min(rs, rt * 10 + i);
}
return (rs);
}
int main()
{
int n;
scanf("%d", &n);
vector < int > A(n);
for (int &a : A)
scanf("%d", &a), a = 1 << a;
return !printf("%lld\n", Solve(A, 0, 0));
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |