[HSAT 1회 정기 코딩 인증평가 기출] 로봇이 지나간 경로 반례 부탁드립니다.
#include
#include
#include
#include
using namespace std;
string answer;
int dh[4]={0,1,0,-1};
int dw[4]={1,0,-1,0};//동남서북 동쪽기준 시계방향
char dir[4]={'>','v','<','^'};
int starth;
int startw;
char startdir;
int diridx;
char map[26][26];
int h,w;
bool validcheck(int x,int y){
if(x>0 && y>0 && x<=h && y<=w) return true;
else return false;
}
void findstart(){
for(int i =1; i<=h;i++){
for(int j=1;j<=w;j++){
if(map[i][j]=='#'){
int solocheck=0;
...
- 연습문제 톡
- 날짜
- 2023-10-04 14:26:53
- 작성자
- won6948
- 댓글
- 0
#[hsat_1회_정기_코딩_인증평가_기출]_로봇이_지나간_경로
#c++