# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
476072 | aris12345678 | Swap Swap Sort (CCO21_day1problem1) | C++14 | 5074 ms | 2424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int mxN = 100005;
int arr[mxN], bit[mxN], posi[mxN], po[mxN];
void upd(int pos, int n, int val) {
while(pos <= n) {
bit[pos] += val;
pos += (pos&(-pos));
}
}
long long ask(int pos) {
long long ans = 0;
while(pos > 0) {
ans += 1LL*bit[pos];
pos -= (pos&(-pos));
}
return ans;
}
int main() {
int n, k, q;
scanf("%d %d %d", &n, &k, &q);
for(int i = 1; i <= n; i++) {
scanf("%d", &arr[i]);
posi[i] = i, po[i] = i;
}
while(q--) {
int t;
scanf("%d", &t);
swap(posi[t], posi[t+1]);
po[posi[t]]--, po[posi[t+1]]++;
// cout << posi[t] << " " << po[posi[t]] << " " << posi[t+1] << " " << po[posi[t+1]] << "\n";
fill(bit, bit+mxN, 0);
long long ans = 0;
for(int i = 1; i <= n; i++) {
upd(po[arr[i]], n, 1);
ans += (ask(n)-ask(po[arr[i]]));
// cout << arr[i] << " " << po[arr[i]] << " " << ans << "\n";
// cout << posi[i] << " " << po[posi[i]] << "\n";
}
// cout << "\n";
printf("%lld\n", ans);
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |