# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
107804 | 2019-04-25T20:04:52 Z | patrikpavic2 | 수열 (BOI14_sequence) | C++17 | 107 ms | 856 KB |
#include <cstdio> #include <cstring> #include <cstdlib> #include <ctime> #include <algorithm> #include <set> #include <vector> #include <queue> #include <map> #define X first #define Y second #define PB push_back using namespace std; typedef long long ll; typedef long double ld; typedef pair < int, int > pii; typedef vector < int > vi; typedef set < int > si; const int N = 1e5 + 500; const int M = 1e6 + 500; const int INF = 0x3f3f3f3f; const int MOD = 1e9 + 7; const int OFF = (1 << 18); const int LOG = 20; const double EPS = 1e-9; const double PI = 3.1415926535; int n; vi v; ll ans(vi msk, bool devet,int dubina){ ll ret = 123456789000000LL; if(!msk.size()) return 0; if(msk.size() == 1){ ret = 0; for(int i = 1;i<10;i++){ if(((1 << i) & msk[0])){ ret = ret * 10LL + i; if(ret == i && (msk[0] & 1)) ret *= 10LL; } } if((msk[0] & 1) && ret == 0) ret = 10; return ret; } for(int i = 0;i < 9 + devet;i++){ int cur = i, dos = 0, nula = 0; vi nw; for(int j = 0;j < msk.size();j++){ int x = msk[j]; if(x & (1 << cur)) x ^= (1 << cur); dos |= x; if((dos & 1) && cur == 0) nula = 1; if(cur == 9 || j == msk.size() - 1) nw.PB(dos), dos = 0; cur = (cur + 1) % 10; } ll nxt = ans(nw, nw.size() > 2 || i < 9, dubina + 1) * 10LL + i; if(nula && !nxt) nxt = 10LL; ret = min(ret, nxt); } /** printf("DUBINA %d => %lld\n", dubina, ret); printf("MSK{%d} :", dubina); for(int x : msk){ printf("{"); for(int i = 0;i < 10;i++) if(x & (1 << i)) printf("%d ", i); printf("} "); } printf(" RET %lld\n", ret); **/ return ret; } int main(){ scanf("%d", &n); for(int i = 0;i < n;i++){ int d; scanf("%d", &d); v.PB((1 << d)); } ll fin = ans(v, 1, 0); if(fin == 0) fin = 10LL; printf("%lld\n", fin); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | Output is correct |
2 | Correct | 3 ms | 256 KB | Output is correct |
3 | Correct | 2 ms | 256 KB | Output is correct |
4 | Correct | 2 ms | 384 KB | Output is correct |
5 | Incorrect | 2 ms | 256 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 3 ms | 384 KB | Output is correct |
3 | Correct | 2 ms | 384 KB | Output is correct |
4 | Correct | 2 ms | 356 KB | Output is correct |
5 | Incorrect | 2 ms | 384 KB | Output isn't correct |
6 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | Output is correct |
2 | Correct | 27 ms | 384 KB | Output is correct |
3 | Correct | 27 ms | 452 KB | Output is correct |
4 | Incorrect | 27 ms | 480 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | Output is correct |
2 | Correct | 3 ms | 256 KB | Output is correct |
3 | Correct | 2 ms | 256 KB | Output is correct |
4 | Correct | 2 ms | 356 KB | Output is correct |
5 | Correct | 107 ms | 856 KB | Output is correct |
6 | Incorrect | 2 ms | 256 KB | Output isn't correct |
7 | Halted | 0 ms | 0 KB | - |