Submission #892162

#TimeUsernameProblemLanguageResultExecution timeMemory
892162therealpainFinancial Report (JOI21_financial)C++17
45 / 100
40 ms5596 KiB
#include <bits/stdc++.h> #define fi first #define se second #define all(x) x.begin(), x.end() #define getbit(x) (((x) >> (i)) & 1) #define TASK "" using namespace std; template <typename T1, typename T2> bool maxi(T1 &a, T2 b) { if (a < b) a = b; else return false; return true; } template <typename T1, typename T2> bool mini(T1 &a, T2 b) { if (a > b) a = b; else return false; return true; } const long long inf = 1e18; const int mod = 1e9 + 7; const int N = 3e5 + 5; int n; int d; int a[N]; namespace subtask2 { int dp[405][405]; vector <int> value; void solve() { for (int i = 1; i <= n; ++i) value.push_back(a[i]); sort(all(value)); value.erase(unique(all(value)), value.end()); int m = (int) value.size(); for (int i = 1; i <= n; ++i) { a[i] = lower_bound(all(value), a[i]) - value.begin() + 1; } memset(dp, -0x3f, sizeof dp); for (int i = 1; i <= n; ++i) dp[i][a[i]] = 1; for (int i = 1; i <= n; ++i) { for (int j = i - 1; j >= max(i - d, 1); --j) { for (int mx = 1; mx <= m; ++mx) { maxi(dp[i][max(mx, a[i])], dp[j][mx] + (mx < a[i])); } } } cout << *max_element(dp[n] + 1, dp[n] + m + 1); } }; namespace subtask4 { stack <int> st; void solve() { int ans = 0; for (int i = n; i >= 1; --i) { while (st.size() && st.top() <= a[i]) st.pop(); st.push(a[i]); maxi(ans, st.size()); } cout << ans; } }; namespace subtask5 { void solve() { vector <int> dp; for (int i = 1; i <= n; ++i) { int p = lower_bound(all(dp), a[i]) - dp.begin(); if (p == dp.size()) dp.push_back(a[i]); else dp[p] = a[i]; } cout << (int) dp.size() << '\n'; } }; int main() { ios_base::sync_with_stdio(0); cin.tie(0); //freopen(TASK".inp", "r", stdin); //freopen(TASK".out", "w", stdout); cin >> n >> d; for (int i = 1; i <= n; ++i) cin >> a[i]; if (n <= 400) subtask2::solve(); else if (d == 1) subtask4::solve(); else if (d == n) subtask5::solve(); }

Compilation message (stderr)

Main.cpp: In function 'void subtask5::solve()':
Main.cpp:77:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   77 |             if (p == dp.size()) dp.push_back(a[i]);
      |                 ~~^~~~~~~~~~~~
Main.cpp: In instantiation of 'bool maxi(T1&, T2) [with T1 = int; T2 = long unsigned int]':
Main.cpp:65:32:   required from here
Main.cpp:11:11: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' [-Wsign-compare]
   11 |     if (a < b) a = b; else return false; return true;
      |         ~~^~~
#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...