# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
26993 | zoomswk | Brunhilda’s Birthday (BOI13_brunhilda) | C++14 | 1000 ms | 178152 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int m;
vector<int> di[3000005];
int p[100005];
int t[200005];
int dp[3000005];
int qr(int l, int r){
int res = 1e9;
for(l+=m, r+=m; l<r; l>>=1, r>>=1){
if(l&1) res = min(res, t[l++]);
if(r&1) res = min(res, t[--r]);
}
return res;
}
void upd(int idx, int v){
for(t[idx+=m]=v; idx>1; idx>>=1) t[idx>>1] = min(t[idx], t[idx^1]);
return;
}
int main(){
int Q;
scanf("%d%d", &m, &Q);
for(int i=1; i<=m; i++){
scanf("%d", &p[i]);
for(int j=p[i]; j<=(int)(3e6); j+=p[i]) di[j].push_back(i);
}
for(int i=1; i<=(int)(3e6); i++){
for(int x : di[i]) upd(x, 1e9);
dp[i] = qr(1, m+1) + 1;
for(int x : di[i]) upd(x, dp[i]);
}
while(Q--){
int x;
scanf("%d", &x);
if(dp[x] <= 1e7) printf("%d\n", dp[x]);
else printf("oo\n");
}
return 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... |