Submission #643895

#TimeUsernameProblemLanguageResultExecution timeMemory
643895mychecksedadKitchen (BOI19_kitchen)C++17
0 / 100
630 ms628 KiB
/* Author : Mychecksdead */ #include<bits/stdc++.h> using namespace std; typedef long long int ll; typedef long double ld; #define MOD (1000000000+7) #define MOD1 (998244353) #define PI 3.1415926535 #define pb push_back #define setp() cout << setprecision(15) #define all(x) x.begin(), x.end() #define debug(x) cerr << #x << " is " << x << '\n'; const int N = 1e6+100, M = 305, F = 2147483646, K = 20; int n, m, k, m1, m2, a[N], b1[N], b2[N], S = 0, mn; bool dp[M*M][M], p[M*M]; void solve(){ cin >> n >> m >> k; for(int i = 1; i <= n; ++i){ cin >> a[i]; S += a[i]; } m1 = m2 = 0; for(int i = 1; i <= m; ++i){ int x; cin >> x; if(x < n) b1[++m1] = x; else b2[++m2] = x; } mn = *min_element(a + 1, a + 1 + n); if(mn < k || m < k){ if(m < k){ for(int i = 0; i < 1e9; ++i) cout << "f" <<endl; return; } cout << "Impossible"; return; } for(int i = 0; i < M * M; ++i) p[i] = 0; for(int j = 0; j < M; ++j) for(int i = 0; i < M * M; ++i) dp[j][i] = 0; p[0] = dp[0][0] = 1; for(int i = 1; i <= m1; ++i){ for(int s = M * M - 1; s >= b1[i]; --s){ p[s] |= p[s - b1[i]]; } } for(int i = 1; i <= m2; ++i){ for(int j = m2; j >= 1; --j) for(int s = M * M - 1; s >= b2[i]; --s){ dp[j][s] |= dp[j - 1][s - b2[i]]; } } bool ok = 0; int ans = MOD; int po = 0; S -= k * n; for(int i = 0; i <= m2; ++i){ po = 0; for(int s = M * M - 1; s >= 0; --s){ if(dp[i][s]){ int sum = s - min(i, k) * n; int rem = max(0, k - i) * n; po = rem + max(0, S - sum); while(po < M * M && !p[po]) po++; if(po == M * M){ break; } ok = 1; ans = min(sum + (po - rem) - S, ans); } } } if(ok) cout << ans; else cout << "Impossible"; } int main(){ cin.tie(0); ios::sync_with_stdio(0); int T = 1, aa; // cin >> T;aa=T; while(T--){ // cout << "Case #" << aa-T << ": "; solve(); cout << '\n'; } return 0; }

Compilation message (stderr)

kitchen.cpp: In function 'int main()':
kitchen.cpp:97:16: warning: unused variable 'aa' [-Wunused-variable]
   97 |     int T = 1, aa;
      |                ^~
kitchen.cpp: In function 'void solve()':
kitchen.cpp:44:72: warning: iteration 305 invokes undefined behavior [-Waggressive-loop-optimizations]
   44 |     for(int j = 0; j < M; ++j) for(int i = 0; i < M * M; ++i) dp[j][i] = 0;
      |                                                               ~~~~~~~~~^~~
kitchen.cpp:44:49: note: within this loop
   44 |     for(int j = 0; j < M; ++j) for(int i = 0; i < M * M; ++i) dp[j][i] = 0;
      |                                               ~~^~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...