当前位置: 首页 > 工具软件 > Kangaroo > 使用案例 >

Kangaroo Puzzle 【Gym - 101981K 2018南京】

梁丘伟
2023-12-01

题目链接

我写过的最玄学的代码。。。。
这个题太秀了

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
char s[25][25];
int main()
{
    int n,m;
    scanf("%d %d",&n,&m);
    for(int i=1;i<=n;i++)
    {
        scanf("%s",s[i]);
    }
    for(int i=1;i<=50000;i++)
    {
        int x=rand()%4;
        if(x==0)
            printf("U");
        else if(x==1)
            printf("D");
        else if(x==2)
            printf("L");
        else
            printf("R");
    }
    printf("\n");
    return 0;
}

 类似资料: