#include <algorithm>
#include <iostream>
#include <string.h>
#include <cstdlib>
#include <vector>
#include <string>
#include <bitset>
#include <math.h>
#include <queue>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
typedef long double ld;
const ll MOD = 1e9 + 7, INF = 1e18 + 1;
using namespace std;
ll p[1000000], to[10000], n;
struct SegTree
{
ll t[80000][4], start;
ll operator[] (const int& i)
{
return t[i][0];
}
void build (ll n)
{
start = 1;
while (start < n) start <<= 1;
for (ll i = 2 * start - 1; i; i--)
merge (i);
}
void merge (ll node)
{
if (node >= start)
{
t[node][3] = p[node - start];
t[node][2] = max (0LL, p[node - start]);
t[node][1] = max (0LL, p[node - start]);
t[node][0] = max (0LL, p[node - start]);
}
else
{
t[node][3] = t[2 * node][3] + t[2 * node + 1][3];
t[node][2] = max (t[2 * node][3] + t[2 * node + 1][2], t[2 * node][2]);
t[node][1] = max (t[2 * node][1] + t[2 * node + 1][3], t[2 * node + 1][1]);
t[node][0] = max (max (t[2 * node][0], t[2 * node + 1][0]), t[2 * node][1] + t[2 * node + 1][2]);
}
}
void update (ll x, ll d)
{
p[x] = d;
x += start;
while (x)
{
merge (x);
x /= 2;
}
}
} t;
struct point
{
ll x, y, c;
bool operator < (const point& b) const
{
return (y == b.y ? x < b.x : y > b.y);
}
} a[2000];
struct fraction
{
ll a, b;
ll p1, p2;
bool operator < (const fraction& d) const
{
if (!d.b && !b) return a < d.a;
if (!d.b) return true;
if (!b) return false;
return (a * d.b) < (b * d.a);
}
bool operator == (const fraction& d) const
{
if (!b && !d.b) return true;
if (!b || !d.b) return false;
return (a * d.b) == (b * d.a);
}
};
vector <fraction> d;
int main ()
{
cin >> n;
for (ll i = 0; i < n; i++)
{
scanf ("%lld%lld%lld", &a[i].x, &a[i].y, &a[i].c);
}
sort (a, a + n);
ll sm = 0, mx = 0;
for (int i = 0; i < n; i++)
for (int j = i + 1; j < n; j++)
{
p[i] = a[i].c;
p[j] = a[j].c;
}
for (int i = 0; i < n; i++)
{
sm += p[i];
if (sm < 0) sm = 0;
mx = max (sm, mx);
}
ll ans = mx;
cout << ans;
}
Compilation message
bulldozer.cpp: In function 'int main()':
bulldozer.cpp:114:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf ("%lld%lld%lld", &a[i].x, &a[i].y, &a[i].c);
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Correct |
2 ms |
376 KB |
Output is correct |
4 |
Correct |
2 ms |
376 KB |
Output is correct |
5 |
Correct |
2 ms |
376 KB |
Output is correct |
6 |
Correct |
2 ms |
248 KB |
Output is correct |
7 |
Correct |
2 ms |
376 KB |
Output is correct |
8 |
Correct |
2 ms |
376 KB |
Output is correct |
9 |
Correct |
2 ms |
376 KB |
Output is correct |
10 |
Correct |
2 ms |
424 KB |
Output is correct |
11 |
Correct |
2 ms |
376 KB |
Output is correct |
12 |
Incorrect |
2 ms |
256 KB |
Output isn't correct |
13 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Correct |
2 ms |
376 KB |
Output is correct |
4 |
Correct |
2 ms |
376 KB |
Output is correct |
5 |
Correct |
2 ms |
376 KB |
Output is correct |
6 |
Correct |
2 ms |
248 KB |
Output is correct |
7 |
Correct |
2 ms |
376 KB |
Output is correct |
8 |
Correct |
2 ms |
376 KB |
Output is correct |
9 |
Correct |
2 ms |
376 KB |
Output is correct |
10 |
Correct |
2 ms |
424 KB |
Output is correct |
11 |
Correct |
2 ms |
376 KB |
Output is correct |
12 |
Incorrect |
2 ms |
256 KB |
Output isn't correct |
13 |
Halted |
0 ms |
0 KB |
- |