Submission #581326

#TimeUsernameProblemLanguageResultExecution timeMemory
581326drdilyorGlobal Warming (CEOI18_glo)C++17
28 / 100
2095 ms3412 KiB
#if defined(ONPC) && !defined(_GLIBCXX_ASSERTIONS)
    #define _GLIBCXX_ASSERTIONS
#endif
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/detail/standard_policies.hpp>
#ifdef ONPC
    #include "t_debug.cpp"
#else
    #define debug(...) 42
#endif
#define allit(a) (a).begin(), (a).end()
#define sz(a) ((int) (a).size())

using namespace std;
using ll = long long;
using vi = vector<int>;
namespace pd = __gnu_pbds;
template<typename K>
using ordered_set = pd::tree<K, pd::null_type, less<int>, pd::rb_tree_tag, pd::tree_order_statistics_node_update>;
template<typename... T>
using gp_hash_table = pd::gp_hash_table<T...>;//simple using statement gives warnings

const int INF = 1e9;
const ll INFL = 1e18;
const int N = 1e5;
const int RANDOM = chrono::high_resolution_clock::now().time_since_epoch().count();
mt19937 rng(RANDOM);

int lis(vi& a) {
    vi dp(a.size());
    int res = 0;
    for (int i = 0; i < sz(a); i++) {
        dp[i] = 1;
        for (int j = 0; j < i; j++) {
            if (a[j] < a[i]) dp[i] = max(dp[i], dp[j]+1);
        }
        res = max(res, dp[i]);
    }
    debug(a, res);
    return res;
}

int solve() {
    int n, x; cin >> n >> x;
    vi a(n); for (auto& i : a) cin >> i;

    vector<vi> dp(2, vi(n));
    int res = 0;
    for (int i = 0; i < n; i++) {
        dp[0][i] = 1;
        dp[1][i] = 1;
        for (int j = 0; j < i; j++) {
            if (a[j] < a[i]) {
                dp[0][i] = max(dp[0][i], dp[0][j]+1);
                dp[1][i] = max(dp[1][i], dp[1][j]+1);
            }
            else if (a[j] - x < a[i]) {
                dp[1][i] = max(dp[1][i], dp[0][j]+1);
            }
        }
        res = max(res, dp[1][i]);
    }
    cout << res;
    return 0;
}

signed main() {
    cin.tie(0)->sync_with_stdio(0);
    int t = 1;
    //cin >> t;
    while (t-- && cin) {
        if (solve()) break;
        #ifdef ONPC
            cout << "____________________" << endl;
        #endif
    }
    return 0;
}

Compilation message (stderr)

glo.cpp: In function 'int lis(vi&)':
glo.cpp:10:24: warning: statement has no effect [-Wunused-value]
   10 |     #define debug(...) 42
      |                        ^~
glo.cpp:40:5: note: in expansion of macro 'debug'
   40 |     debug(a, res);
      |     ^~~~~
#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...