# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1096369 | slah007 | Weird Numeral System (CCO21_day1problem2) | C++17 | 0 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstring>
#include <vector>
#include <algorithm>
#include <cassert>
#include <map>
using namespace std;
const int MAXK = 1e6;
const int MAXM = 2500;
const int MAXD = MAXM<<1|1;
int K, Q, D, M;
int arr[MAXK];
map<long long, int> chk;
bool go(long long n){
if(n > 2e18) assert(false);
if(chk.count(n)) return 0;
chk[n] = 1;
for(int i=0;i<D;i++){
if((n-arr[i])%K == 0){
long long t = (n-arr[i])/K;
if(t == 0 || go(t)){
printf("%d ", arr[i]);
return 1;
}
}
}
return 0;
}
int main(){
scanf("%d %d %d %d", &K, &Q, &D, &M);
assert(D<=MAXD);
for(int i=0;i<D;i++) scanf("%d", arr+i);
while(Q--){
long long n;
scanf("%lld", &n);
chk.clear();
if(!go(n)){
printf("IMPOSSIBLE");
}
puts("");
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |