地图上400个点,直接走一个50000的字符串。
用随机函数rand()%4产生四个方向的随机数。
关于rand添加链接描述
#include<bits/stdc++.h>
using namespace std;
char str[100][10000];
int a,b,c,d,e;
int main()
{
cin>>a>>b;
for(int i=1; i<=a; i++)
{
cin>>str[i];
}
for(int i=1; i<=49999; i++)
{
int p=rand()%4;
if(p==0)
cout<<"U";
else if(p==1)
cout<<"D";
else if(p==2)
cout<<"L";
else
cout<<"R";
}
cout<<endl;
return 0;
}