제출 #1303115

#제출 시각아이디문제언어결과실행 시간메모리
1303115M_SH_OBubble Sort 2 (JOI18_bubblesort2)C++20
0 / 100
1755 ms772 KiB
/*#pragma GCC optimize("O3")
#pragma GCC optimization("Ofast,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")*/
#include <bits/stdc++.h>
#include "bubblesort2.h"
/*#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>*/
#define ll long long
#define ll1 long long
#define ull unsigned long long
#define dou long double
#define str string
#define vll vector<ll>
#define vi vector<int>
#define pll pair<ll, ll>
#define vpll vector<pair<ll, ll>>
#define vbool vector<bool>
#define vstr vector<str>
#define vvll vector<vll>
#define pb push_back
#define pf push_front
#define endl "\n"
#define fr first
#define se second
// #define sortcmp(a) sort(a.begin(), a.end(), cmp)
#define sort(a) sort(a.begin(), a.end())
#define reverse(a) reverse(a.begin(), a.end())
#define speed ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define ordered_set tree<ll, null_type, less_equal<ll>, rb_tree_tag, tree_order_statistics_node_update>

using namespace std;
//using namespace __gnu_pbds;

const ll INF = 1e18+7;
const int lg = 20;
//const ll MOD = 1e9+7;
const ll MOD2 = 998244353;

mt19937 rng(1488);
ll randll(ll l, ll r) {
    return uniform_int_distribution<ll>(l, r)(rng);
}


vector<int> countScans(vector<int> a,vector<int> x,vector<int> v){
    int q = x.size(), n = a.size();
    vector<int> ans(q);

    for (int j = 0; j < q; j ++) {
        a[x[j]] = v[j];
        vi b = a;
        sort(b);
        ll maxl = 0;
        for (int i = 1; i < n; i ++) {
            if (a[i] != b[i]) maxl = i;
        }
        ans[j] = maxl;
    }
    return ans;
}

/*int main() {
    speed;

    ll n, q;
    cin >> n >> q;
    vi a(n), x(q), v(q);
    for (int i = 0; i < n; i ++) {
        cin >> a[i];
    }

    for (int i = 0; i < q; i ++) {
        cin >> x[i] >> v[i];
    }

    for (int i : countScans(a, x, v)) {
        cout << i << ' ';
    }
    cout << endl;
}*/
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...