답안 #48952

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
48952 2018-05-20T09:33:33 Z faishol27 Art Exhibition (JOI18_art) C++14
0 / 100
2 ms 252 KB
#include  <bits/stdc++.h>
using namespace std;
 
typedef long long ll;
#define PUB push_back
 
struct art{
    ll sz, val;
};
 
int N;
ll ans = 0, cnt = 0;
vector<art> data;

bool comp(art a, art b){
    if(a.sz == b.sz) return a.val < b.val;
    return a.sz < b.sz;
}
 
int main(){
    cin >> N;
    data.PUB({0,0});
    for(int i=1;i<=N;i++){
        ll a, b;
        cin >> a >> b;
        data.PUB({a, b});
    }
 
    sort(data.begin(), data.end(), comp);
    
    cnt += data[1].val;
    ans = max(cnt, ans);

    for(int i=2;i<=N;i++){
        cnt += data[i].val-(data[i].sz-data[i-1].sz);
        if(cnt <= 0){
            cnt = data[i].val;
        }
        ans = max(ans, cnt);
    }

    cout << ans << endl;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 252 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 252 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 252 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 252 KB Output isn't correct
2 Halted 0 ms 0 KB -