• 题目1362:左旋转字符串(Move!Move!!Move!!!)


    题目1362:左旋转字符串(Move!Move!!Move!!!)

    时间限制:2 秒

    内存限制:32 兆

    特殊判题:

    提交:2306

    解决:961

    题目描述:
    汇编语言中有一种移位指令叫做循环左移(ROL),现在有个简单的任务,就是用字符串模拟这个指令的运算结果。对于一个给定的字符序列S,请你把其循环左移K位后的序列输出。例如,字符序列S=”abcXYZdef”,要求输出循环左移3位后的结果,即“XYZdefabc”。是不是很简单?OK,搞定它!
    输入:
    多组测试数据,每个测试数据包含一个字符序列S和非负整数K。其中S的长度不超过1000。
    输出:
    对应每个测试案例,输出新序列。
    样例输入:
    UDBOJ 4
    abba 1
    样例输出:
    JUDBO
    bbaa
    答疑:
    解题遇到问题?分享解题心得?讨论本题请访问:http://t.jobdu.com/thread-8085-1-1.html
    最开始写的时候多写了一层判断,于是一直时间超限,后来改了,去掉判断就AC了
    开始的代码
    #include<iostream>
    #include<cstring>
    #include<queue>
    #include<cstdio>
    #include<algorithm>
    #include<cmath>
    using namespace std;
    #define maxn 1010
    char str[1010];
    char s[1010];
    int main()
    {
        int n;
        while(~scanf("
    %s %d",&str,&n))
        {
            n = n%strlen(str);
            int i;
            for(i=0;i<strlen(str);i++)
            {
                if(i-n>=0)
                    s[i-n] = str[i];
                else s[i-n+strlen(str)] = str[i];
            }
            s[i] = '';
            printf("%s
    ",s);
        }
        return 0;
    }

    后来AC的

    #include<iostream>
    #include<cstring>
    #include<queue>
    #include<cstdio>
    #include<algorithm>
    #include<cmath>
    using namespace std;
    #define maxn 1010
    char str[1010];
    char s[1010];
    int main()
    {
        int n;
        while(~scanf("
    %s %d",&str,&n))
        {
            n = n%strlen(str);
            int i;
            for(i=0;i<strlen(str);i++)
            {
                s[(i-n+strlen(str))%strlen(str)] = str[i];
            }
            s[i] = '';
            printf("%s
    ",s);
        }
        return 0;
    }

    用了很多时间,于是看了下其他人的代码,其实都差不多,却只用了70MS,我用了1250MS

    #include<stdio.h>
    #include<string.h>
    int main()
    {
        char str[2000];
        int len,k,i,loc; 
        while(scanf("%s",str)!=EOF){
             
            char str2[2000];
            len=strlen(str);
            scanf("%d",&k);
            loc=0;
            for(i=(k%len);i<len;i++){
                str2[loc++]=str[i];
            }
            for(i=0;i<(k%len);i++){
                str2[loc++]=str[i];
            }
            str2[loc]=0;
            puts(str2);
         
        }
        return 0;
    }
    彼时当年少,莫负好时光。
  • 相关阅读:
    [Swift通天遁地]八、媒体与动画-(11)实现音乐播放的动态视觉效果
    [Swift通天遁地]八、媒体与动画-(10)在项目中播放GIF动画
    [Swift通天遁地]八、媒体与动画-(9)快速实现复合、Label、延续、延时、重复、缓冲、弹性动画
    [Swift通天遁地]八、媒体与动画-(8)使用开源类库快速实现位移动画
    net location
    移动js
    说说
    jquery mobile script
    jquery script
    保持整洁
  • 原文地址:https://www.cnblogs.com/l609929321/p/6601585.html
Copyright © 2020-2023  润新知