답안 #1050105

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1050105 2024-08-09T07:26:04 Z vjudge1 Art Exhibition (JOI18_art) C++
0 / 100
0 ms 348 KB
#include <bits/stdc++.h>
#define f first
#define s second
using namespace std;

int main()
{
    int n;
    cin >> n;
    pair<long long, long long> q[n];
    for (int i = 0; i < n; i++) {
        cin >> q[i].f >> q[i].s;
    }
    sort(q, q + n);

    vector<pair<long long, long long>> a;
    long long s = 0;
    for (int i = 0; i < n; i++) {
        if (i > 0 && q[i].f == q[i - 1].f) {
            s += q[i].s;
        } else {
            if (i > 0) {
                a.push_back(make_pair(q[i - 1].f, s));
            }
            s = q[i].s;
        }
    }
    a.push_back(make_pair(q[n - 1].f, s));
    long long m = 0;
    for (int i = 0; i < a.size(); i++) {
        long long r = 0;
        for (int j = i + 1; j < a.size(); j++) {
            s = 0;
            for (int k = i; k <= j; k++) {
                s += a[k].s;
            }
            r = s - (a[j].f - a[i].f);
            m = max(m, r);
        }
        
    }
    cout << m << endl;

    return 0;
}

Compilation message

art.cpp: In function 'int main()':
art.cpp:30:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   30 |     for (int i = 0; i < a.size(); i++) {
      |                     ~~^~~~~~~~~~
art.cpp:32:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   32 |         for (int j = i + 1; j < a.size(); j++) {
      |                             ~~^~~~~~~~~~
# 결과 실행 시간 메모리 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 -