# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1054670 | 2024-08-12T11:26:59 Z | aymanrs | Bubble Sort 2 (JOI18_bubblesort2) | C++17 | 1128 ms | 760 KB |
#include "bubblesort2.h" #include <bits/stdc++.h> #pragma GCC optimize("O3,unroll-loops") #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt") using namespace std; std::vector<int> countScans(std::vector<int> A,std::vector<int> X,std::vector<int> V){ int Q=X.size(); std::vector<int> ans(Q); int n = A.size(); for (int _=0;_<Q;_++) { A[X[_]] = V[_]; vector<int> v = {0}; for(int i = 0;i < n;i++) { bool f = false; for(int j = 0;j < v.size();j++){ if(v[j] <= A[i]) { f=true; v[j]=A[i]; break; } } if(!f) v.push_back(A[i]); } ans[_] = v.size()-1; } return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 460 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 460 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1128 ms | 760 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 460 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |