fork download
  1. #pragma GCC optimize("O3")
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4.  
  5. using ll = long long;
  6. using ld = long double;
  7.  
  8. constexpr int mod = 1e9 + 7;
  9. constexpr int inf = 1e9;
  10. constexpr ll linf = 1e18;
  11. constexpr ld eps = 1e-9;
  12.  
  13. #define fast_io() ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr)
  14. #define all(x) (x).begin(), (x).end()
  15. #define pb push_back
  16. #define fi first
  17. #define se second
  18. #define sz(x) ((int)(x).size())
  19.  
  20. void solve() {
  21. vector<int> c(3), m(3);
  22. for (int i = 0; i < 3; i++) {
  23. int a, b; cin >> a >> b;
  24. c[i] = a, m[i] = b;
  25. }
  26. int turn = 0;
  27. for (int i = 0; i < 100; i++) {
  28. int can = c[(turn == 2 ? turn - 2 : turn + 1)] - m[(turn == 2 ? turn - 2 : turn + 1)];
  29. can = max({0, min(can, m[turn])});
  30. m[turn] -= can;
  31. m[(turn == 2 ? turn - 2 : turn + 1)] += can;
  32. turn += (turn == 2 ? -2 : 1);
  33. }
  34. for (auto& x : m) cout << x << '\n';
  35. }
  36.  
  37. int main() {
  38. fast_io();
  39. freopen("mixmilk.in", "r", stdin);
  40. freopen("mixmilk.out", "w", stdout);
  41. int t = 1;
  42. // cin >> t;
  43. while (t--) solve();
  44. return 0;
  45. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty