Submission #650065

#TimeUsernameProblemLanguageResultExecution timeMemory
650065boris_mihovBubble Sort 2 (JOI18_bubblesort2)C++17
0 / 100
393 ms768 KiB
#include "bubblesort2.h" #include <algorithm> #include <iostream> #include <numeric> #include <vector> typedef long long llong; const int MAXN = 500000 + 10; const int INF = 1e9; int a[MAXN], n; int smaller[MAXN]; std::vector <int> ans; int cnt; void add(int idx) { if (smaller[idx] != 0) cnt--; smaller[idx] = 0; for (int i = idx - 1 ; i >= 1 ; --i) { smaller[i] += (a[i] > a[idx]); cnt += (smaller[i] == 1 && (a[i] > a[idx])); } for (int i = idx + 1 ; i <= n ; ++i) { smaller[idx] += (a[idx] > a[i]); } cnt += (smaller[idx] != 0); } void remove(int idx) { for (int i = idx - 1 ; i >= 1 ; --i) { smaller[i] -= (a[i] > a[idx]); cnt -= (smaller[i] == 0 && a[i] > a[idx]); } } std::vector<int> countScans(std::vector<int> A,std::vector<int> X,std::vector<int> V) { n = A.size(); for (int i = 1 ; i <= n ; ++i) a[i] = A[i-1]; cnt = n; for (int i = 1 ; i <= n ; ++i) { for (int j = i + 1 ; j <= n ; ++j) { smaller[i] += (a[i] > a[j]); } cnt -= (smaller[i] == 0); } ans.resize(X.size()); for (int i = 0 ; i < X.size() ; ++i) { remove(X[i] + 1); a[X[i] + 1] = V[i]; add(X[i] + 1); ans[i] = cnt; } return ans; }

Compilation message (stderr)

bubblesort2.cpp: In function 'std::vector<int> countScans(std::vector<int>, std::vector<int>, std::vector<int>)':
bubblesort2.cpp:60:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   60 |     for (int i = 0 ; i < X.size() ; ++i)
      |                      ~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...