Submission #363190

#TimeUsernameProblemLanguageResultExecution timeMemory
363190buyolitsezBubble Sort 2 (JOI18_bubblesort2)C++17
0 / 100
9098 ms620 KiB
#include "bubblesort2.h" using namespace std; std::vector<int> countScans(std::vector<int> a,std::vector<int> x,std::vector<int> v){ int n = a.size(), q = x.size(); vector <int> s(q); for(int f = 0; f < q; ++f) { a[x[f]] = v[f]; int cnt = 0; vector<int> b = a; for(int i = 0; i < n; ++i) { bool flag = 0; for (int j = 0; j + 1 < n; ++j) { if (a[j] > a[j + 1]) { swap(a[j], a[j + 1]); flag = 1; } } if (!flag) {break;} ++cnt; } swap(a, b); s[f] = cnt; } return s; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...