이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MN = 2e5+5;
int K,M,N,T[200],A[MN],B[MN],C[MN];
char S[MN];
int main()
{
    ios_base::sync_with_stdio(0),cin.tie(0);
    cin >> K >> M >> S >> N;
    for(int i=0; i<N; i++) cin >> A[i] >> B[i] >> C[i];
    for(int j=0; j<200; j++) T[j] = j;
    for(int i=N-1; i>=0; i--){
        for(int j=0; j<K; j++){
            if(T[j]<C[i]) continue;
            if(T[j]<C[i]+B[i]-A[i]) T[j] = T[j]+A[i]-C[i];
            else T[j] = T[j]-B[i]+A[i];
        }
    }
    for(int i=0; i<K; i++) cout << S[T[i]];
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |