이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// test idea
#include <bits/stdc++.h>
using namespace std;
#define int long long int
#define ins insert
#define pb push_back
#define endl '\n'
#define putr(x) cout<<x<<endl;return;
#define all(x) x.begin(),x.end()
int nxt(){ int x;cin>>x; return x; }
const int mod = 1e9 +7, sze = 1e4 +10, inf = INT_MAX, LG = 20;
int dp[sze];
vector<pair<int,int>> event[sze];
void fast(){
for(int i=1;i<sze;i++){
dp[i]=inf;
}
int n,q;
cin>>n>>q;
multiset<int> ans;
int mx = 0;
vector<int> arr;
for(int i=1;i<=n;i++){
int p;cin>>p;
// event[p].pb({p,p});
mx=max(mx,p);
arr.pb(p);
}
dp[0]=0;
for(int i=1;i<sze;i++){
for(auto v:arr){
if(v>i){
dp[i]=1;
break;
}
int x = max((int)0, v*(i/v));
dp[i]=min(dp[i],dp[x] +1);
// cout<<i<<" "<<v<< " "<<dp[x]+1<<endl;
}
}
while(q--){
int v;
cin>>v;
if(dp[v]>=inf){
cout<<"oo"<<endl;
}
else{
cout<<dp[v]<<endl;
}
}
}
signed main(){
// ios::sync_with_stdio(0);
// cin.tie(0);
// cout.tie(0);
int tt = 1;
// cin>>tt;
while(tt--){
fast();
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |