'단순 구현' 태그의 글 목록
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.
1258 행렬찾기
#include #include #include #include #include using namespace std; #define NS 102 int map[NS][NS]; int chk[NS][NS]; int N; int ret; int dy[] = { 0,1,0,-1 }; int dx[] = { 1,0,-1,0 }; struct Data { int size, y, x; }; bool cmp(Data a, Data b) { if (a.size == b.size)return a.y < b.y; else return a.size < b.size; } vectorv; struct Matrix { Matrix() { int T; scanf("%d", &T); for (int t = 1; t
2020. 2. 27.