Submission #45661

# Submission time Handle Problem Language Result Execution time Memory
45661 2018-04-15T20:14:15 Z reality Art Exhibition (JOI18_art) C++17
Compilation error
0 ms 0 KB
#include "bits/stdc++.h"
using namespace std;
#define fi first
#define se second
#define ll long long
#define dbg(v) cerr<<#v<<" = "<<v<<'\n'
#define vi vector<int>
#define vl vector <ll>
#define pii pair<int,int>
#define mp make_pair
#define db long double
#define pb push_back
#define all(s) s.begin(),s.end()
template < class T > T smin(T &a,T b) {if (a > b) a = b;return a;}
template < class T > T smax(T &a,T b) {if (a < b) a = b;return a;}
int main(void) {
    int n;
    cin>>n;
    map < ll , ll > M;
    for (auto & it : s) {
        ll u,v;
        cin>>u>>v;
        M[u] += v;
    }
    vector < pair < ll , ll > > s;
    for (auto it : M)
        s.pb(it);
    vl ss;
    for (int i = 1;i < n;++i)
        s[i].se += s[i - 1].se;
    ll mn = -s[0].fi;
    ll ans = -1e18;
    for (int i = 1;i < n;++i) {
        smax(ans,s[i].se - s[i].fi - mn);
        smin(mn,s[i - 1].se - s[i].fi);
    }
    cout << ans << '\n';
    return 0;
}

Compilation message

art.cpp: In function 'int main()':
art.cpp:20:22: error: 's' was not declared in this scope
     for (auto & it : s) {
                      ^