Submission #854151

#TimeUsernameProblemLanguageResultExecution timeMemory
854151anhphantGlobal Warming (CEOI18_glo)C++14
15 / 100
2060 ms11208 KiB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

ll N, X, A[500007];

void initialize() {
    ios_base :: sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    if (fopen("FILE.INP", "r")) {
        freopen("FILE.INP", "r", stdin);
        freopen("FILE.OUT", "w", stdout);
    }

    cin >> N >> X;
    for(int i = 1; i <= N; ++i) cin >> A[i];
}

namespace subtask1 {
    ll LIS(vector<ll> v) {
        //for(int id = 1; id <= N; ++id) cerr << v[id] << " "; cerr << endl;
        ll ans = 0;
        for(ll mask = 1; mask < (1 << N); ++mask) {
            //cerr << "mask = " << mask << endl;
            ll last_value = -1e12;
            bool flag = 1;
            for(ll i = 0; i < N; ++i) {
                if (!(mask & (1 << i))) continue;
                if (last_value >= v[i + 1]) {
                    flag = 0;
                    break;
                }
                last_value = v[i + 1];
            }
            if (flag) ans = max(ans, ll(__builtin_popcountll(mask)));
        }
        return ans;
    }

    void solve() {
        vector<ll> arr(N + 7, 0LL);
        for(int i = 1; i <= N; ++i) arr[i] = A[i];
        ll res = 0;

        for(ll x = -X; x <= X; ++x) {
            //cerr << "x = " << x << endl;
            for(int i = 1; i <= N; ++i) {
                vector<ll> v = arr;
                for(int j = i; j <= N; ++j) {
                    v[j] += x;
                    res = max(res, LIS(v));
                    //cerr << i << " " << j << " " << LIS(v) << endl;
                }
            }
        }

        cout << res << endl;
    }

    void process() {
        solve();
    }
}

namespace subtask2 {
    ll LIS(vector<ll> v) {
        vector<ll> bslen(N + 1, 0LL);
        for(int i = 1; i <= N; ++i) bslen[i] = 1e18;
        ll ans = 0;

        for(ll i = 1; i <= N; ++i) {
            ll k = lower_bound(bslen.begin(), bslen.end(), v[i]) - bslen.begin() - 1;
            ans = max(ans, k + 1);
            bslen[k + 1] = min(bslen[k + 1], v[i]);
        }

        return ans;
    }

    void solve() {
        vector<ll> arr(N + 7, 0LL);
        for(int i = 1; i <= N; ++i) arr[i] = A[i];
        ll res = 0;

        for(ll x = -X; x <= X; ++x) {
            //cerr << "x = " << x << endl;
            for(int i = 1; i <= N; ++i) {
                vector<ll> v = arr;
                for(int j = i; j <= N; ++j) {
                    v[j] += x;
                    res = max(res, LIS(v));
                    //cerr << i << " " << j << " " << LIS(v) << endl;
                }
            }
        }

        cout << res << endl;
    }

    void process() {
        solve();
    }
}

int main() {
    initialize();
    subtask2 :: process();
}

Compilation message (stderr)

glo.cpp: In function 'void initialize()':
glo.cpp:11:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   11 |         freopen("FILE.INP", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
glo.cpp:12:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   12 |         freopen("FILE.OUT", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...