이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
/// author: LilPluton auuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu
#define OPT ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define intt long long
#define ll long long
#define pb push_back
#define arr array
#define vll vector<int>
#define fi first
#define se second
#define rep(i,j,k) for(int i = j; i <= k; ++i)
#define all(a) a.begin(),a.end()
#define pii pair<int,int>
#define endll '\n'
using namespace std;
const ll INF = 1e18;
const int N = 305 * 305;
ll n, m, k, sum, chefsum;
ll a[N], chef[N];
ll dp[N];
signed main()
{
cin >> n >> m >> k;
for(ll i = 1; i <= n; ++i)
cin >> a[i], sum += a[i];
sort(a + 1, a + n + 1);
for(ll i = 1; i <= m; ++i)
{
cin >> chef[i];
for(ll j = N; j >= chef[i]; --j)
{
if(j == chef[i] || dp[j - chef[i]])
{
dp[j] = max(dp[j], dp[j - chef[i]] + min(n, chef[i]));
}
}
}
if(m < k || a[1] < k)
{
cout << "Impossible";
return 0;
}
for(ll i = sum; i <= N; ++i)
{
if(dp[sum] >= k * n)
{
cout << i - sum << endll;
return 0;
}
}
cout << "Impossible";
}
# | 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... |