답안 #972377

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
972377 2024-04-30T11:35:09 Z vjudge1 Art Exhibition (JOI18_art) C++17
0 / 100
0 ms 348 KB
#include <bits/stdc++.h>
#define zet ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define pb push_back
#define ll long long
#define pii pair<int, int>
using namespace std;
const ll NN = 1e18+7;
const int N = 1e5+15;
pair<int, int> p[N];
int a[N], sqr;
int main () {
    int n; cin >> n;
	pii a[n];
	for(int i=0;i<n;i++)cin >> a[i].first >> a[i].second;
	sort(a + 1, a + n + 1);
	int mx = a[0].second,x = a[0].second;
	for(int i = 1; i < n; i++){
		x += a[i].second;
		x -= (a[i].first - a[i-1].first);
		if(x<a[i].second)x = a[i].second;
		mx = max(mx,x);
	}
	cout<<mx;
}
# 결과 실행 시간 메모리 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 -