# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
561509 | gg123_pe | 금 캐기 (IZhO14_divide) | C++14 | 128 ms | 11972 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define f(i,a,b) for(int i = a; i < b; i++)
const int N = 1e5 + 5;
const ll inf = 1e17 + 100;
int n;
ll a[N], g[N], e[N], sg[N], se[N], ans;
int main(){
cin >> n;
vector <pair<ll,pair<ll,ll>>> v;
f(i,1,n+1) {
cin >> a[i] >> g[i] >> e[i];
sg[i] = sg[i-1] + g[i];
se[i] = se[i-1] + e[i];
v.push_back({se[i] - a[i], {1, -sg[i]}});
v.push_back({se[i-1] - a[i], {0, sg[i-1]}});
}
ll mini = inf;
sort(v.begin(), v.end());
for(auto p: v){
ll y = p.second.second;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |