이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n,m,k;
int a[301];
int b[301];
int sum=0;
void subtask1() {
int ans=1e9;
if (m<k) {
cout << "Impossible" << endl;
return;
}
if (k==1) {
for (int i=1;i<=m;i++) {
if (b[i]>=sum) {
ans=min(ans,b[i]-sum);
}
}
int u=0;
for (int i=1;i<=m;i++) {
u+=b[i];
}
if (u>=sum) {
ans=min(ans,u);
}
if (ans==1e9) {
cout << "Impossible" << endl;
} else {
cout << ans-sum << endl;
}
return;
} else if (k==2) {
int u=0;
for (int i=1;i<=m;i++) {
u+=b[i];
}
if (u>=sum) {
ans=min(ans,u);
}
if (ans==1e9) {
cout << "Impossible" << endl;
} else {
cout << ans-sum << endl;
}
return;
} else {
cout << "Impossible" << endl;
return;
}
}
int check(int mask) {
int u=0;
int db=0;
int su=0;
for (int i=0;i<m;i++) {
if ((mask>>i)%2==1) {
if (b[i+1]>=n) {
db++;
} else {
u+=b[i+1];
}
su+=b[i+1];
}
}
if ((k<=db+(int(u/n))) && (sum<=su)) {
return(su-sum);
} else {
return(1e9);
}
}
void subtask2() {
for (int i=1;i<=n;i++) {
if (a[i]<k) {
cout << "Impossible" << endl;
return;
}
}
int ans=1e9;
for (int i=0;i<pow(2,m);i++) {
ans=min(ans,check(i));
}
if (ans>=1e9) {
cout << "Impossible" << endl;
} else {
cout << ans << endl;
}
}
void subtask3() {
vector<bool> g;
g.assign(sum+1+300+300,0);
g[300]=1;
for (int i=1;i<=m;i++) {
for (int j=min(i*300,sum+1+300);i>max(0,sum-(m-i)*300-300);i--) {
g[j+300]=g[j+300] | g[j+300-b[i]];
}
}
int ans=-1;
for (int i=sum+300;i<sum+300+300;i++) {
if (g[i]) {
ans=i-300;
break;
}
}
if (ans==-1) {
cout << "Impossible" << endl;
} else {
cout << ans << endl;
}
return;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m >> k;
for (int i=1;i<=n;i++) {
cin >> a[i];
sum+=a[i];
}
for (int i=1;i<=m;i++) {
cin >> b[i];
}
/*
if (m<=2) {
subtask1();
return(0);
}
*/
if (m<=15) {
subtask2();
return(0);
}
if (k==1) {
subtask3();
return(0);
}
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... |