# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
38057 | 14kg | 입자 가속기 (IZhO11_collider) | C++11 | 26 ms | 13812 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#define N 1000005
struct DB {
char data;
int left, right;
} in[N];
int n, nn, hash[1001];
char temp[N];
int search(int x) {
int w = hash[x / 1000], k = (x / 1000) * 1000;
while (k < x) k++, w = in[w].right;
return w;
}
int main() {
int m, x, y;
char s;
scanf("%d %d %s ", &n, &m, temp + 1), nn = n / 1000;
for (int i = 1; i <= nn; i++) hash[i] = i * 1000;
in[0].right = 1;
for (int i = 1; i <= n; i++) {
in[i].data = temp[i], in[i].left = i - 1, in[i].right = i + 1;
}
while (m--) {
scanf("%c ", &s);
if (s == 'q') {
scanf("%d ", &x);
printf("%c\n", in[search(x)].data);
}
else {
scanf("%d %d ", &x, &y);
int wx = search(x), wy = search(y);
if (x < y) {
for (int i = (x - 1) / 1000 + 1; i <= y / 1000; i++)
if (i == y / 1000) hash[i] = wx;
else hash[i] = in[hash[i]].right;
in[in[wx].left].right = in[wx].right;
in[in[wx].right].left = in[wx].left;
in[in[wy].right].left = wx;
in[wx].left = wy;
in[wx].right = in[wy].right;
in[wy].right = wx;
}
if (y < x) {
for (int i = (y - 1) / 1000 + 1; i <= x / 1000; i++)
if (i == y / 1000) hash[i] = wx;
else hash[i] = in[hash[i]].left;
in[in[wx].left].right = in[wx].right;
in[in[wx].right].left = in[wx].left;
in[in[wy].left].right = wx;
in[wx].left = in[wy].left;
in[wx].right = wy;
in[wy].left = wx;
}
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |