#include <bits/stdc++.h>
using namespace std;
//#pragma GCC optimize("O3")
//#pragma GCC optimize("Ofast")
//#pragma GCC target("avx2,popcnt")
//#define int long long
#define forn(i,n) for(int i=0;i<n;++i)
#define pb push_back
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
#define f first
#define s second
#define pi pair<int,int>
#define vii(a,n) vector<int>a(n);forn(i,n)cin>>a[i];
const int inf = 1e9;
void solve() {
int n,m,k; cin>>n>>m>>k;
vii(a,n);
vii(b,m);
if (k>m) {
cout<<"Impossible";
return;
}
forn(i,n) if (a[i]<k) {
cout<<"Impossible";
return;
}
int s=0;
for(auto&x:a) s+=x;
for(auto&x:b) s-=x;
if (s>0) {
cout<<"Impossible";
return;
}
s=0;
for(auto&x:a) s+=x;
int ans=inf;
const int S=90000;
vector<int> dp(S+1,0);
dp[0]=1;
for(auto&x:b) {
if (x>=n) continue;
for (int i=S-x; i>=0; --i) dp[i+x]|=dp[i];
}
vector<vector<int>> dp2(S+1,vector<int>(m+1,0));
dp2[0][0]=1;
for(auto&x:b) {
if (x<n) continue;
for (int i=S-x; i>=0; --i) {
for (int j=m-1; j>=0; --j) {
dp2[i+x][j+1]|=dp2[i][j];
dp2[i+x][j]|=dp2[i+x][j+1];
}
}
}
for (int i=0; i<=s; ++i) {
if (!dp[i]) continue;
int x=max(k-i/n,0);
for (int j=s-i; j<=S; ++j) {
if (dp2[j][x]) ans=min(ans,i+j-s);
}
}
if (ans==inf) exit(1);
else cout<<ans;
}
int32_t main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
solve();
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
5588 KB |
Output is correct |
2 |
Correct |
13 ms |
5508 KB |
Output is correct |
3 |
Correct |
10 ms |
5588 KB |
Output is correct |
4 |
Correct |
11 ms |
5588 KB |
Output is correct |
5 |
Runtime error |
6 ms |
5588 KB |
Execution failed because the return code was nonzero |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
5588 KB |
Output is correct |
2 |
Correct |
13 ms |
5508 KB |
Output is correct |
3 |
Correct |
10 ms |
5588 KB |
Output is correct |
4 |
Correct |
11 ms |
5588 KB |
Output is correct |
5 |
Runtime error |
6 ms |
5588 KB |
Execution failed because the return code was nonzero |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1087 ms |
95776 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1072 ms |
18260 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
5588 KB |
Output is correct |
2 |
Correct |
13 ms |
5508 KB |
Output is correct |
3 |
Correct |
10 ms |
5588 KB |
Output is correct |
4 |
Correct |
11 ms |
5588 KB |
Output is correct |
5 |
Runtime error |
6 ms |
5588 KB |
Execution failed because the return code was nonzero |
6 |
Halted |
0 ms |
0 KB |
- |