Submission #377317

# Submission time Handle Problem Language Result Execution time Memory
377317 2021-03-13T21:45:12 Z hhh07 Kitchen (BOI19_kitchen) C++14
0 / 100
3 ms 1900 KB
#include <iostream>
#include <algorithm>
#include <cmath>
#include <map>
#include <climits>
#include <vector>
#include <queue>
#include <utility>
#include <iomanip>
#include <cstring>
#include <fstream>

using namespace std;

typedef unsigned long long ll;
typedef pair<ll, ll> ii;

ll maks = LLONG_MAX;

ll nnad2(ll n){
    return n*(n-1)/2;
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    ll n, m, k;
    cin >> n >> m >> k;
    ll a[n], b[m];
    ll sum = 0;
    for (ll i = 0; i < n; i++){
        cin >> a[i];
        sum += a[i];
        if (a[i] < k){
            cout << "Impossible";
            return 0;
        }
    }
    for (ll i = 0; i < m; i++)
        cin >> b[i];
    
    if (k > m){
        cout << "Impossible";
        return 0;
    }
    
    vector<ll> dp(90001, -1e9);
    dp[0] = 0;
    for (ll i = 0; i < m; i++){
        for (ll j = 90000 - b[i]; j >= 0 ; j--){
            dp[j + b[i]] = max(dp[j + b[i]], dp[j] + min(n, b[i]));
        }
    }
    
    for (ll i = sum; i < 90001; i++){
        if (dp[i] >= n*k){
            cout << i - sum << endl;
            return 0;
        }
    }
    cout << "Impossible";
    return 0;

}

Compilation message

kitchen.cpp: In function 'int main()':
kitchen.cpp:48:26: warning: overflow in conversion from 'double' to 'std::vector<long long unsigned int>::value_type' {aka 'long long unsigned int'} changes value from '-1.0e+9' to '0' [-Woverflow]
   48 |     vector<ll> dp(90001, -1e9);
      |                          ^~~~
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 1900 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 1900 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 1900 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 1900 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 1900 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -