# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
27009 | noobprogrammer | Brunhilda’s Birthday (BOI13_brunhilda) | C++14 | 0 ms | 1844 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std ;
int n , m , pr[100010] , mx[10000010] , cnt[10000010] , ptr , dp[10000010] , nc = 1 ;
int fr[10000010] , bk[10000010] , vv[10000010] , nxt[10000010] ;
const int N = 1e7 ;
void upd(int x,int y){
if(fr[x] == 0) {
bk[x] = fr[x] = nc ;
vv[nc] = y ;
nc++ ;
}
else {
nxt[bk[x]] = nc ;
vv[nc] = y ;
bk[x] = nc ;
nc++;
}
}
int main(){
// freopen("in.txt" , "r" , stdin) ;
// freopen("out.txt" , "w" , stdout) ;
scanf("%d%d" , &n,&m ) ;
int j ;
for(int i=0;i<n;i++) {
scanf("%d" , pr+i) ;
for( j=0 ; j <= 1e7 ; j+=pr[i]) mx[j] = max(mx[j] , pr[i]) ;
}
upd(mx[0]-1 , 1) ;
cnt[1]++ ;
int val = 1 , v ;
for(int i=1;i<=N;i++){
while(!cnt[val] && val <= 1e7 ) val++ ;
dp[i] = val ;
v = fr[i] ;
while(v != bk[i]){
cnt[vv[v]]-- ;
v = nxt[v] ;
}
cnt[vv[v]]-- ;
if(dp[i] == 1e7+1) continue ;
if(!mx[i]) continue ;
upd(i+mx[i]-1 , dp[i] + 1 ) ;
cnt[dp[i]+1]++ ;
}
for(int i=0;i<m;i++){
scanf("%d" , &val) ;
if(dp[val] == 1e7+1) printf("oo\n") ;
else printf("%d\n" , dp[val] ) ;
}
}
컴파일 시 표준 에러 (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... |