Acwing第 13 场周赛未完结
Posted 辉小歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Acwing第 13 场周赛未完结相关的知识,希望对你有一定的参考价值。
3811. 排列 【难度: 简单 / 知识点: 思维】
只要往后移一位既可
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int t; cin>>t;
while(t--)
{
int n; cin>>n;
for(int i=1;i<=n;i++) cout<<(i%n)+1<<" ";
cout<<endl;
}
return 0;
}
3812. 机器人走迷宫【难度: 中 / 知识点: 枚举 模拟】
#include<bits/stdc++.h>
using namespace std;
const int N=510;
char a[N][N];
int n,m,t;
int startx,starty,endx,endy;
string s;
int b[4]={0,1,2,3};
bool flag;
void dfs(int x,int y)
{
int w=0;
for(int index=0;index<s.size();index++)
{
if(s[index]-'0'==b[0])
{
int tempx=x-1;
int tempy=y;
if(tempx>=0&&tempx<n&&tempy>=0&&tempy<m&&a[tempx][tempy]!='#') x=tempx,y=tempy;
else w=1;
}
if(s[index]-'0'==b[1])
{
int tempx=x;
int tempy=y+1;
if(tempx>=0&&tempx<n&&tempy>=0&&tempy<m&&a[tempx][tempy]!='#')
x=tempx,y=tempy;
else w=1;
}
if(s[index]-'0'==b[2])
{
int tempx=x+1;
int tempy=y;
if(tempx>=0&&tempx<n&&tempy>=0&&tempy<m&&a[tempx][tempy]!='#')
x=tempx,y=tempy;
else w=1;
}
if(s[index]-'0'==b[3])
{
int tempx=x;
int tempy=y-1;
if(tempx>=0&&tempx<n&&tempy>=0&&tempy<m&&a[tempx][tempy]!='#')
x=tempx,y=tempy;
else w=1;
}
if(w) return;
if(x==endx&&y==endy)
{
flag=true;
return ;
}
}
}
int main(void)
{
cin>>t;
while(t--)
{
cin>>n>>m;
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
cin>>a[i][j];
if(a[i][j]=='S') startx=i,starty=j;
if(a[i][j]=='E') endx=i,endy=j;
}
}
cin>>s;
for(int i=0;i<4;i++) b[i]=i;
int cnt=0;
do
{
flag=false;
dfs(startx,starty);
if(flag) cnt++;
}while(next_permutation(b,b+4));
cout<<cnt<<endl;
}
return 0;
}
以上是关于Acwing第 13 场周赛未完结的主要内容,如果未能解决你的问题,请参考以下文章