Codeforces 8B

5374 단어 codeforces
제목의 대의: 로봇의 이동 노선을 제시하고 빈칸과 장애만 있는 바둑판이 존재하는지 구하여 로봇이 기점 중점에서 가장 짧은 길로 이동하도록 한다.문제풀이: 로봇이 걸어온 현재 칸의 인접한 세 칸(그 칸을 제외한 칸) 중 하나가 지나갔는지 단번에 판단합니다. 설명이 있으면 안 됩니다.%%%%debug
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<string>
#define DEBUG(...) fprintf(stderr,__VA_ARGS__)
using namespace std;
const int MAXL=502;
string s;
bool vis[MAXL][MAXL];
int main()
{
#ifndef ONLINE_JUDGE
    freopen("8B.in","r",stdin);
    freopen("8B.out","w",stdout);
#endif
    cin>>s;
    int x=250,y=250;
    vis[x][y]=1;
    for(int i=0;i<s.size();i++)
    {
        char c=s[i];
        if(c=='L')
            x-=1;
        else if(c=='R')
            x+=1;
        else if(c=='U')
            y+=1;
        else y-=1;
        DEBUG("%d %d
"
,x,y); if(vis[x][y]==1) { printf("BUG
"
); return 0; } else if(c=='R'&&(vis[x+1][y]==1||vis[x][y+1]==1||vis[x][y-1]==1)) { printf("BUG
"
); return 0; } else if(c=='L'&&(vis[x-1][y]==1||vis[x][y+1]==1||vis[x][y-1]==1)) { printf("BUG
"
); return 0; } else if(c=='D'&&(vis[x-1][y]==1||vis[x+1][y]==1||vis[x][y-1]==1)) { printf("BUG
"
); return 0; } else if(c=='U'&&(vis[x-1][y]==1||vis[x][y+1]==1||vis[x+1][y]==1)) { printf("BUG
"
); return 0; } vis[x][y]=1; } printf("OK
"
); }

좋은 웹페이지 즐겨찾기