# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
335934 | Killer2501 | 수열 (APIO14_sequence) | C++14 | 16 ms | 2816 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define fi first
#define se second
#define pll pair<ll, ll>
#define pb push_back
#define pii pair<ll ,pll>
#define task "C"
using namespace std;
const int N = 3e5+5;
const int mod = 1e9+7;
ll n, t, m, k, a[N], b[N], ans, tong, u, v;
string s;
bool ok;
pll p[N];
struct dang
{
ll x, y, id;
dang(){}
dang(ll x, ll y, ll id): x(x), y(y), id(id){}
};
bool cmp(const dang& u, const dang& v)
{
return ((u.x < v.x) || (u.x == v.x && u.y < v.y));
}
void sol()
{
cin >> n;
for(int i = 1; i <= n; i ++)
{
cin >> p[i].fi >> p[i].se;
}
sort(p+1, p+1+n);
ans = p[1].se;
a[1] = p[1].se;
k = -p[1].fi;
for(int i = 2; i <= n; i ++)
{
a[i] = a[i-1] + p[i].se;
ans = max(p[i].se, max(ans, a[i] - p[i].fi - k));
//cout << a[i] - p[i].fi <<" "<<k<<'\n';
k = min(k, a[i-1] - p[i].fi);
}
cout << ans;
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
if(fopen(task".inp", "r"))
{
freopen(task".inp", "r", stdin);
freopen(task".out", "w", stdout);
}
int ntest = 1;
//cin >> ntest;
while(ntest -- > 0)
sol();
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |