이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//*
//#pragma GCC optimize("O2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
//#pragma GCC target("avx,avx2,sse,sse2,fma,tune=native")
//*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int ,int > pii;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const ll maxn = 1e5;
const ll mod =1e9+7;
const ld PI = acos((ld)-1);
#define pb push_back
#define endl '\n'
#define dokme(x) cout << x , exit(0)
#define migmig ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
#define ms(x , y) memset(x , y , sizeof x)
ll pw(ll a, ll b, ll md = mod){ll res = 1;while(b){if(b&1){res=(a*res)%md;}a=(a*a)%md;b>>=1;}return(res);}
int n , m , k;
int a[maxn];
int b[maxn];
int suma = 0 , sumb = 0;
int dp[2][maxn];
int32_t main(){
migmig;
cin >> n >> m >> k;
for(int i = 0 ; i < n ; i ++)
cin >> a[i], suma+=a[i];
for(int i = 0 ; i < m ; i ++)
cin >> b[i], sumb+=b[i];
sort(a , a + n);
sort(b , b + m);
if(m < k)dokme("Impossible");
if(*min_element(a , a + n) < k)dokme("Impossible");
if(suma > sumb)dokme("Impossible");
for(int i = 0 ; i < m ; i ++)
for(int j = b[i] ; j <= sumb ; j ++)
dp[(i+1)%2][j] = max(dp[i%2][j - b[i]] + min(b[i] , n) , dp[i%2][j]);
for(int i = suma ; i <= sumb ; i ++ )
if(dp[m%2][i] >= n*k)dokme(i - suma);
cout << "Impossible";
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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |