Submission #1077744

# Submission time Handle Problem Language Result Execution time Memory
1077744 2024-08-27T08:52:00 Z danikoynov Bulldozer (JOI17_bulldozer) C++14
0 / 100
10 ms 348 KB
#include<bits/stdc++.h>
#define endl '\n'

using namespace std;
typedef long long ll;

struct Point
{
    ll x, y;

    Point(ll _x = 0, ll _y = 0)
    {
        x = _x;
        y = _y;
    }

    void input()
    {
        cin >> x >> y;
    }
};

const int MAXN = 2010;
int n;
pair < Point, ll > spot[MAXN];
void input()
{
    cin >> n;
    for (int i = 1; i <= n; i ++)
    {
        spot[i].first.input();
        cin >> spot[i].second;
    }
}

ll signed_area(Point A, Point B, Point C) /// returns signed area * 2
{
    ll area = (B.x - A.x) * (A.y + B.y) +
                (C.x - B.x) * (B.y + C.y) +
                    (A.x - C.x) * (C.y + A.y);
    return area;
}

int orient(Point A, Point B, Point C)
{
    ll area = signed_area(A, B, C);

    if (area > 0)
        return 1;
    if (area < 0)
        return -1;
    assert(area != 0);
    return 0;
}

void simulate()
{
    ll result = 0;
    for (int i = 1; i <= n; i ++)
        for (int j = i + 1; j <= n; j ++)
        {
            vector < pair < ll, ll > > pos, neg;
            for (int k = 1; k <= n; k ++)
            {
                if (k == i || k == j)
                    continue;
                ll area = signed_area(spot[i].first, 
                                        spot[j].first, 
                                        spot[j].first);
                if (area > 0)
                    pos.push_back({area, spot[k].second});
                else
                    pos.push_back({-area, spot[k].second});
                
            }

            sort(pos.begin(), pos.end());
            sort(neg.begin(), neg.end());

            ll best = 0, sum = 0;
            for (pair < ll, ll > cur : pos)
            {
                sum += cur.second;
                best = max(best, sum);
            }

            sum = 0;
            for (pair < ll, ll > cur : neg)
            {
                sum += cur.second;
                best = max(best, sum);
            }

            best = best + spot[i].second;
            best = best + spot[j].second;

            ll mx = min(spot[i].second, spot[j].second);
            if (mx < 0)
                best -= mx;
            result = max(result, best);

        }

    cout << result << endl;
}
void solve()
{
    input();
    simulate();
}
int main()
{
    solve();
    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 10 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 10 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 10 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 10 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 10 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -