# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
17313 | gs14004 | 입자 가속기 (IZhO11_collider) | C++14 | 44 ms | 4668 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <limits.h>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <algorithm>
#include <string>
#include <functional>
#include <vector>
#include <numeric>
#include <deque>
#include <utility>
#include <bitset>
#include <iostream>
using namespace std;
typedef long long lint;
typedef long double llf;
typedef pair<int, int> pi;
const int B = 1000;
char buck[1005][2005];
int len[1005];
char buf[1000005];
int n, m;
pi get(int x){
int p = 0;
while(1){
if(x <= len[p]){
break;
}
x -= len[p++];
}
return pi(p, x-1);
}
void reinit(){
int p = 0;
for(int i=0; i<1005; i++){
for(int j=0; j<len[i]; j++){
buf[p++] = buck[i][j];
}
len[i] = 0;
}
for(int i=0; i<n; i++){
buck[i/B][len[i/B]++] = buf[i];
}
}
int main(){
scanf("%d %d %s",&n,&m,buf);
for(int i=0; i<n; i++){
buck[i/B][len[i/B]++] = buf[i];
}
for(int i=0; i<m; i++){
if(i%m == m-1){
reinit();
}
char buf[5];
scanf("%s",buf);
if(*buf == 'a'){
int a, b;
scanf("%d %d",&a,&b);
pi pa = get(a), pb = get(b);
char c = buck[pa.first][pa.second];
for(int i=pa.second; i<len[pa.first]-1; i++){
buck[pa.first][i] = buck[pa.first][i+1];
}
len[pa.first]--;
for(int i=len[pb.first]; i>pb.second; i--){
buck[pb.first][i] = buck[pb.first][i-1];
}
buck[pb.first][pb.second] = c;
len[pb.first]++;
// a to b
}
else{
int t;
scanf("%d",&t);
pi r = get(t);
printf("%c\n",buck[r.first][r.second]);
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |