# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
535731 | sam571128 | Group Photo (JOI21_ho_t3) | C++17 | 709 ms | 117600 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define int long long
#define fastio ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
using namespace std;
const int N = 5e3+5;
int bit[N][2], inv[N][N];
void update(int idx, int pos, int val){
while(pos < N){
bit[pos][idx] += val;
pos += pos&-pos;
}
}
int query(int idx, int pos){
int res = 0;
while(pos){
res += bit[pos][idx];
pos -= pos&-pos;
}
return res;
}
signed main(){
fastio
int n;
cin >> n;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |