# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
776827 | 2023-07-08T10:04:17 Z | aZvezda | Team Contest (JOI22_team) | C++14 | 1 ms | 312 KB |
#include <bits/stdc++.h> typedef long long ll; using namespace std; const ll MAX_N = 1e5 + 10; ll n; pair<ll, pair<int, int> > p[MAX_N]; deque<ll> down, up; void put_down(ll ind) { down.push_back(ind); } void put_up(ll ind) { up.push_back(ind); } signed main() { cin >> n; for(ll i = 0; i < n; i ++) { cin >> p[i].first >> p[i].second.first >> p[i].second.second; } sort(p, p + n); ll ptr = 0; ll ans = -1; for(ll i = 0; i < n; i ++) { while(ptr < i && p[ptr].first != p[i].first) { put_down(ptr); put_up(ptr); ptr ++; } for(ll j = 0; j < down.size(); j ++) { for(ll k = 0; k < up.size(); k ++) if(down[j] != up[k]) { ans = max(ans, p[down[j]].second.first + p[up[k]].second.second + p[i].first); } } } cout << ans << endl; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 312 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 312 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 312 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 312 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |