이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define int long long
#define ld long double
#define ii array<int, 3>
using namespace std;
const int maxn = 2005;
int n, ans = 0;
array<int, 3> a[maxn], b[maxn];
template <typename T>
struct Point {
T x;
T y;
};
Point<ld> X, Y;
template <typename T>
T distance_point_to_line(const Point<T>& P, const Point<T>& A, const Point<T>& B) {
T dx = B.x - A.x;
T dy = B.y - A.y;
T numerator = (dy * (P.x - A.x) - dx * (P.y - A.y));
T denominator = sqrt(dx * dx + dy * dy);
return numerator / denominator;
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
// freopen("TRUFFLE.inp", "r", stdin);
// freopen("TRUFFLE.out", "w", stdout);
cin >> n;
for (int i = 1; i <= n; i++)
cin >> a[i][0] >> a[i][1] >> a[i][2],
b[i] = a[i];
sort(a + 1, a + n + 1);
sort(b + 1, b + n + 1);
for (int k = 1, cur = 0; k <= n; k++)
{
cur = max(cur, 0ll) + b[k][2];
ans = max(ans, cur);
}
// for (int i = 1; i <= n; i++)
// for (int j = i; j <= n; j++)
// {
// X.x = a[i][0];
// X.y = a[i][1];
// Y.x = a[j][0];
// Y.y = a[j][1];
// sort(b + 1, b + n + 1, [](ii a, ii b){
// Point<ld> Z;
// Z.x = a[0];
// Z.y = a[1];
// Point<ld> T;
// T.x = b[0];
// T.y = b[1];
// return distance_point_to_line<ld>(Z, X, Y) < distance_point_to_line<ld>(T, X, Y);
// });
//
// }
cout << ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |