이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#define SuC_VaT Doc_code_ban_khac
#define Nhan_cach_bang_0 Doc_code_ban_khac
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> ii;
typedef pair<ll, ii > iii;
const int kn = 4e5 + 5, N = 1e5+5;
const ll mod = 1e9 + 7, mod2 = 1e9+9;
const ll base = 31, base1 = 37;
#define x first
#define y second
#define lwb lower_bound
#define upb upper_bound
#define pb push_back
#define popb pop_back
#define pf push_front
#define popf pop_front
#define log2(X) (31-__builtin_clz(X))
#define log2ll(X) (63-__builtin_clzll(X))
#define numbit(X) __builtin_popcount(X)
#define numbitll(X) __builtin_popcountll(X)
#define ms(val,a) memset(a,val,sizeof(a))
#define ff(i,n) for(int i=1;i<=n;i++)
#define _ff(i,n) for(int i=n;i>=1;i--)
#define f(i,a,b) for(int i = a; i <=b; i++)
#define _f(i,a,b) for(int i = b; i>=a;i--)
#define In(X) freopen(X,"r",stdin)
#define Out(X) freopen(X,"w",stdout)
#define ios ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int n;
ii cac[kn];
ll pre[kn], ans = 0;
set< ii > S;
int main()
{
scanf("%d",&n);
ff(i,n)
{
scanf("%lld %lld",&cac[i].x,&cac[i].y);
}
sort(cac+1,cac+n+1);
ff(i,n)
{
pre[i] = pre[i-1] + cac[i].y;
S.insert({pre[i]-cac[i].x, i});
}
auto it = prev(S.end());
ff(i,n)
{
while(it->second < i) it--;
ans = max(ans,(it->first) + cac[i].x - pre[i-1] );
}
printf("%lld",ans);
}
컴파일 시 표준 에러 (stderr) 메시지
art.cpp: In function 'int main()':
art.cpp:53:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d",&n);
~~~~~^~~~~~~~~
art.cpp:56:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld %lld",&cac[i].x,&cac[i].y);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# | 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... |