'16235' 태그의 글 목록
2021.09.18_16235-나무재테크
소스코드 #include #include #include #include #include using namespace std; #define NS 11 int dy[] = { -1,-1,-1,0,1,1,1,0}; int dx[] = { -1,0,1,1,1,0,-1,-1}; int a[NS][NS];// 나무가 심어지는 땅 int a1[NS][NS];//로봇이 뿌릴 양분 저장된 땅 int dieTree[NS][NS];//죽은 나무 영양분 저장 int N, M, K, answer; vector treeData[NS][NS]; void init(); bool safeZone(int y,int x); void spring(); void summer(); void fall(); void winter(); void..
2021. 9. 18.
16235 나무 재테크
https://www.acmicpc.net/problem/16235 16235번: 나무 재테크 부동산 투자로 억대의 돈을 번 상도는 최근 N×N 크기의 땅을 구매했다. 상도는 손쉬운 땅 관리를 위해 땅을 1×1 크기의 칸으로 나누어 놓았다. 각각의 칸은 (r, c)로 나타내며, r은 가장 위에서부터 www.acmicpc.net #include #include #include #include #include using namespace std; #define N_SIZE 12 //최대 배열 크기값 int dy8[] = {-1,-1,-1,0,0,1,1,1}; int dx8[] = {-1,0,1,-1,1,-1,0,1}; int currentSoil[N_SIZE][N_SIZE];//현재영양분 5저장 int A[..
2020. 8. 12.