이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define IOS ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).begin(), (x).end()
#define fp(a,i,c) for(int (a) = (i); (a) < (c); (a)++)
#define fpp(a,i,c) for(int (a) = (i); (a) <= (c); (a)++)
#define fv(c) for(int (a) = (1); (a) <= (c); (a)++)
#define fz(c) for(int (a) = (0); (a) < (c); (a)++)
#define fm(a,i,c) for(int (a) = (i); (a) > (c); (a)--)
#define fmm(a,i,c) for(int (a) = (i); (a) >= (c); (a)--)
#define pb push_back
#define in insert
#define ss second
#define ff first
void S()
{
int n;
cin >> n;
vector <pair<int, int>> v(n);
for(auto &[x, y] : v)
cin >> x >> y;
sort(all(v));
int mx, x, y;
mx = x = y = 0;
fp(i,0,n)
{
x = min(x, y - v[i].ff);
y += v[i].ss;
mx = max(mx, y - x - v[i].ff);
}
cout << mx;
}
int main()
{
IOS;
S();
/*int t;
cin >> t;
while(t--)
S();*/
}
컴파일 시 표준 에러 (stderr) 메시지
art.cpp: In function 'void S()':
art.cpp:24:12: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
24 | for(auto &[x, y] : v)
| ^
art.cpp:9:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
9 | #define fp(a,i,c) for(int (a) = (i); (a) < (c); (a)++)
| ^
art.cpp:29:2: note: in expansion of macro 'fp'
29 | fp(i,0,n)
| ^~
# | 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... |