'알고리즘' 태그의 글 목록 (44 Page)
본문 바로가기
728x90
반응형

알고리즘250

2115. [모의 SW 역량테스트] 벌꿀채취 #include #include #include #include using namespace std; #define NS 11 int map[NS][NS]; int D[NS][NS]; int N, M, C; int ret; int ret1[3]; struct Data { int y; int x; }; vectorv[3]; struct Honey { Honey() { int T; scanf("%d", &T); for (int t = 1; t 2020. 2. 29.
1952. [모의 SW 역량테스트] 수영장 #include #include #include #include using namespace std; #define NS int ret = 0x7fffffff; struct Data { int month, day; }; struct Data1 { int cost; }; vectorv; //vectormonthChk; int monthChk[15];//계획 세우기 int monthPlan[15]; int c;//이용달 확인위해서 struct Honey { Honey() { int T; scanf("%d", &T); for (int t = 1; t 12) { int sum = 0; int cnt = 0; for (int i = 1; i 2020. 2. 29.
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.
1486 장훈이의 높은 선반 알고리즘 #include #include #include using namespace std; #define NS 21 int member[NS]; int N, B; int ret; int Min = 0x7fffffff; struct Seo { Seo() { int T; scanf("%d", &T); for (int t = 1; t = B) { if (Min > (sum - B))Min = (sum - B); } return; } dfs(sum + member[idx], idx + 1); dfs(sum, idx + 1); } }Seo; int main(void) { return 0; } 이문제의 포인트는 재귀로 넣고 빼고를 구현 할 수 있는지 입니다. 소스를 직접보면 어처구니 없이 너무나 쉬운데 이정도는 기본으로.. 2020. 2. 27.
728x90
반응형