이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#define deb(...) logger(#__VA_ARGS__, __VA_ARGS__)
template<typename ...Args>
void logger(string vars, Args&&... values) {
cerr<<vars<<" = ";
string delim="";
(...,(cerr<<delim<<values,delim=", "));
cerr<<"\n";
}
#else
#define deb(...) logger(#__VA_ARGS__, __VA_ARGS__)
template<typename ...Args>
void logger(string vars, Args&&... values) {}
#endif
#define pb push_back
#define sz(x) (int)(x.size())
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
template<typename T> inline void maxa(T& a,T b){a=max(a,b);}
template<typename T> inline void mina(T& a,T b){a=min(a,b);}
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const int mxN=1e5+5; //make sure this is right
const int mod=1e9+7;
int dp[mxN][2];
int main(){
cin.sync_with_stdio(0);
cin.tie(0); cout.tie(0);
#ifdef LOCAL
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
int n,m,k; cin>>n>>m>>k;
int tot=0; int bad=0;
for(int i=0;i<n;i++){
int a; cin>>a;
if(a<k)
bad=1;
tot+=a;
}
if(bad){
cout<<"Impossible\n";
return 0;
}
memset(dp,-1,sizeof(dp));
dp[0][1]=0;
for(int i=0;i<m;i++){
int b; cin>>b;
for(int j=0;j<=tot+500;j++){
if(j>=b && ~dp[j-b][(i%2)^1])
dp[j][(i%2)]=dp[j-b][(i%2)^1]+min(n,b);
maxa(dp[j][(i%2)],dp[j][(i%2)^1]);
}
}
for(int i=tot;i<=tot+500;i++){
if(dp[i][(m-1)%2]>=k*n){
cout<<i-tot<<"\n";
return 0;
}
}
cout<<"Impossible\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |