Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- #include <vector>
- #include <queue>
- #include <algorithm>
- #include <string>
- #include <stack>
- #include <set>
- #include <map>
- #define pii pair <int, int>
- #define pb(x) push_back(x)
- using namespace std;
- using ll = long long;
- using ld = long double;
- using db = double;
- void cv(vector <int> &v) {
- for (auto x : v) cout << x << ' ';
- cout << "\n";
- }
- void cvl(vector <ll> &v) {
- for (auto x : v) cout << x << ' ';
- cout << "\n";
- }
- void cvv(vector <vector <int> > &v) {
- for (auto x : v) cv(x);
- cout << "\n";
- }
- void cvb(vector <bool> v) {
- for (bool x : v) cout << x << ' ';
- cout << "\n";
- }
- void cvs(vector <string> v) {
- for (auto a : v) {
- cout << a << "\n";
- }
- }
- void cvp(vector <pii> a) {
- for (auto p : a) {
- cout << p.first << ' ' << p.second << "\n";
- }
- cout << "\n";
- }
- bool sh = 0;
- #include <ctime>
- vector <ll> ans = {-1, -1, -1};
- ll A, B, C, n;
- bool ok(ll x) {
- ll y, z, a, b, c;
- a = A + x;
- if (a % 2 == 1) {
- return 0;
- }
- b = a / 2;
- y = b - B;
- c = b;
- z = c - C;
- bool r = x + y + z <= n && y >= 0 && z >= 0;
- if (r) {
- ans[0] = x;
- ans[1] = y;
- ans[2] = z;
- }
- return r;
- }
- vector <ll> my() {
- ll l = 0 + A % 2, r = n + n % 2 + A % 2 + 10, m;
- if (sh) {
- cout << "l r = " << l << ' ' << r << "\n";
- }
- while (l + 1 < r) {
- m = (l + r) / 2;
- ll k = m * 2 + A % 2;
- if (sh) {
- cout << "m = " << m << "\n";
- }
- if (ok(k)) {
- l = m;
- } else {
- r = m;
- }
- }
- /*if (ans[0] == -1) {
- cout << 0;
- exit(0);
- }*/
- /*for (int i: ans) {
- cout << i << "\n";
- }*/
- return ans;
- }
- bool cmp(vector <int> a, vector <int> b) {
- return a[0] > b[0];
- }
- vector <int> his() {
- vector <vector <int> > ans;
- for (int x= 0; x <= n; ++x) {
- for (int y = 0; y <= n - x; ++y) {
- for (int z = 0; z <= n - x - y; ++z) {
- if (x + y + z > n) continue;
- int a = A + x, b = B + y, c = C + z;
- if (a == 2 * b && a == 2 * c) {
- ans.push_back({x + y + z, x, y, z});
- }
- }
- }
- }
- vector <int> res = {-1, -1, -1};
- if (ans.empty()) {
- return res;
- }
- sort(ans.begin(), ans.end(), cmp);
- for (int i = 1; i <= 3; ++i) {
- res[i - 1] = ans[0][i];
- }
- return res;
- }
- /*
- 38 15 14 76
- WA
- */
- int main() {
- sh = 0;
- srand(time(0));
- cin >> A >> B >> C >> n;
- if (sh) {
- cout << A << ' ' << B << ' ' << C << ' ' << n << "\n";
- }
- auto me = my();
- //auto he = his();
- /*if (me == he) {
- cv(me);
- cout << "OK\n";
- }
- else {
- cout << "WA\n";
- cout << "me\n";
- cv(me) ;
- cout << "he\n";
- cv(he);
- }*/
- if (me[0] == -1) {
- cout << 0;
- exit(0);
- }
- for (ll i: me) {
- cout << i << "\n";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement