Submission #439938

#TimeUsernameProblemLanguageResultExecution timeMemory
439938Andrei1998Bubble Sort 2 (JOI18_bubblesort2)C++17
0 / 100
9025 ms588 KiB
#include "bubblesort2.h" #include <bits/stdc++.h> using namespace std; int solve(const vector<int> &A) { const int N = A.size(); int best = 0; vector<int> dp(N, 0); for (int i = 1; i < N; ++i) { for (int j = 0; j < i; ++j) { if (A[i] < A[j]) { dp[i] = max(dp[i], 1 + dp[j]); } } best = max(best, dp[i]); } return best; } vector<int> countScans(vector<int> A, vector<int> X, vector<int> V) { int Q = X.size(); vector<int> answer(Q); for (int j = 0; j < Q; j++) { A[X[j]] = V[j]; answer[j] = solve(A); } return answer; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...