'큐' 태그의 글 목록
2021.09.20_16236-아기상어
소스코드 #include #include #include #include #include #include using namespace std; #define SIZE 21 int N;//배열의 크기, 물고기 숫자 int answer;//결과값 int sea[SIZE][SIZE];//바다의 정보 저장 int dy[] = { 0,1,0,-1 }; int dx[] = { 1,0,-1,0 }; struct Data { int y, x, size,cnt; }shark; void init();//초기화 void eatingShark();//실제 시뮬레이션 bool safeZone(int y, int x);//범위 체크 int main(void) { int testCase = 1; for (int tc = 1; tc
2021. 9. 21.
5653. [모의 SW 역량테스트] 줄기세포배양
swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWXRJ8EKe48DFAUo SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com #include #include #include #include #include using namespace std; #define MAXNM 10 #define NMSIZE 705 int dy[] = { 0,1,0,-1 }; int dx[] = { 1,0,-1,0 }; int ret; int N, M, K, X;//가로, 세로, 시간, 생명력 int board[NMSIZE][NMSIZE];//입력 값 int v..
2020. 9. 23.