SOJ-3963(暴力可以,但是stl很强大)

【题目描述】

简单字符串处理

【解题思路】

暴力可以解决,但是需要高效的方法,不然会超时

stl确实是个好东西啊

int main()
{
    int tt, i, j;
    int a, b;
    char s[1005];
    while (cin>>tt) {
        while (tt--) {
            scanf("%d%d%s", &a, &b, s);
            string ans(s);
            while (b--) {
                ans = ans.substr(a, ans.length()) + ans;
            }
            cout<<ans.c_str()<<endl;
        }
    }
    return 0;
}


你可能感兴趣的:(SOJ-3963(暴力可以,但是stl很强大))