답안 #1097920

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1097920 2024-10-08T15:48:03 Z Newtonabc Art Exhibition (JOI18_art) C++14
0 / 100
0 ms 348 KB
#include<bits/stdc++.h>
#define mp make_pair
using namespace std;
vector<pair<long long,long long> > v;
int main(){
	int n;
	long long cur=0;
	cin>>n;
	for(int i=0;i<n;i++){
		long long a,b;
		cin>>a >>b;
		v.push_back(mp(a,b));
	}
	long long ans=LLONG_MIN;
	sort(v.begin(),v.end());
	for(int i=0;i<n;i++){
		if(i) cur-=v[i].first-v[i-1].first;
		cur+=v[i].second;
		if(cur<0) cur=v[i].second;
		ans=max(ans,cur);
	}
	cout<<ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -