///~~~LOTA~~~///
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define append push_back
#define add insert
#define nl "\n"
#define ff first
#define ss second
#define pii pair<int,int>
#define all(x) (x).begin(),(x).end()
#define L0TA ios_base::sync_with_stdio(false);cin.tie(NULL)
#define N 90001
int dp[N];
void solve(){
int n,m,o,p,q,r;
cin>>n>>m>>o;
for(int i=0;i<N;i++)
dp[i]=-1e8;
for(int i=dp[0]=r=0;i<n;i++){
cin>>p;
r+=p;
if(p<o){
cout<<"Impossible";
return;
}
}
for(int i=0;i<m;i++){
cin>>p;
q=min(p,n);
for(int j=N-p-1;j>=0;j--)
dp[j+p]=max(dp[j+p],dp[j]+q);
}
for(int i=0;r+i<N;i++){
if(dp[i+r]>=o){
cout<<i;
return;
}
}
cout<<"Impossible";
}
int main(){
L0TA;
solve();
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
604 KB |
Output is correct |
2 |
Correct |
1 ms |
604 KB |
Output is correct |
3 |
Correct |
1 ms |
604 KB |
Output is correct |
4 |
Incorrect |
1 ms |
604 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
604 KB |
Output is correct |
2 |
Correct |
1 ms |
604 KB |
Output is correct |
3 |
Correct |
1 ms |
604 KB |
Output is correct |
4 |
Incorrect |
1 ms |
604 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
600 KB |
Output is correct |
2 |
Correct |
17 ms |
604 KB |
Output is correct |
3 |
Correct |
20 ms |
600 KB |
Output is correct |
4 |
Correct |
20 ms |
600 KB |
Output is correct |
5 |
Correct |
20 ms |
604 KB |
Output is correct |
6 |
Correct |
14 ms |
600 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
604 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
604 KB |
Output is correct |
2 |
Correct |
1 ms |
604 KB |
Output is correct |
3 |
Correct |
1 ms |
604 KB |
Output is correct |
4 |
Incorrect |
1 ms |
604 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |