Submission #882141

#TimeUsernameProblemLanguageResultExecution timeMemory
882141skywwlaGlobal Warming (CEOI18_glo)C++17
10 / 100
163 ms16112 KiB
#include <bits/stdc++.h> using namespace std ; using ll = long long ; struct SegTree { int _n ; struct Node { ll value = 0 ; Node() {} Node(ll x) { value = x ; } }; Node combine(Node l, Node r) { if (l.value > r.value) return l ; return r ; } vector<Node> t ; SegTree(int len) { _n = len ; t.assign(len * 4 + 1, Node(0)) ; } void modify(int i, ll x, int v, int tl, int tr) { if (tl == tr) { t[v] = combine(x, t[v]) ; } else { int tm = (tl + tr) >> 1 ; if (i <= tm) modify(i, x, v << 1, tl, tm) ; else modify(i, x, v << 1 | 1, tm + 1, tr) ; t[v] = combine(t[v * 2], t[v * 2 + 1]) ; } } void modify(int i, ll x) { modify(i, x, 1, 1, _n) ; } Node get(int l, int r, int v, int tl, int tr) { if (l > tr || r < tl) return Node(0) ; if (l <= tl && tr <= r) return t[v] ; int tm = (tl + tr) >> 1 ; Node L = get(l, r, v << 1, tl, tm) ; Node R = get(l ,r, v << 1 | 1, tm + 1, tr) ; return combine(L, R) ; } Node get(int l, int r) { return get(l, r, 1, 1, _n) ; } }; int32_t main() { ios::sync_with_stdio(false) ; cin.tie(nullptr) ; int n , x ; cin >> n >> x ; vector<int> a(n), c ; for (int i = 1 ; i <= n ; i++) { cin >> a[i] ; c.push_back(a[i]) ; c.push_back(a[i] - 1) ; } sort(c.begin(), c.end()) ; c.erase(unique(c.begin(), c.end()), c.end()) ; auto get = [&](int i) -> int { return (lower_bound(c.begin(), c.end(), i) - c.begin() + 1) ; }; int m = c.size() ; SegTree s(m) ; vector<int> dp(n, 1) ; for (int i = 1 ; i <= n ; i++) { int x = get(a[i]), downx = get(a[i] - 1) ; dp[i] = max(dp[i] * 1ll, s.get(1, downx).value + 1) ; s.modify(x, dp[i]) ; } cout << *max_element(dp.begin(), dp.end()) ; return 0 ; }
#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...