https://swexpertacademy.com/main/code/problem/problemDetail.do SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com HTML 삽입 미리보기할 수 없는 소스
알고리즘
https://swexpertacademy.com/main/code/problem/problemDetail.do SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com HTML 삽입 미리보기할 수 없는 소스
https://swexpertacademy.com/main/code/problem/problemDetail.do SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 #include using namespace std; int scores[101]; int main() { int T; cin >> T; for (int test_case = 1; test_case score; scores[score]++; } int Mos..
그리디 알고리즘 단순 무식하게 현재 상황에서 지금 당장 좋은 것만 고르는 방법 기준에 따라 좋은 것을 선택하는 알고리즘이므로 기준을 제시하는 경우가 많음 ("가장 큰 순서대로~") 정렬 알고리즘과 짝을 이루어 출제되는 경우가 많음 예제 3-1) 거스름돈 아이디어: '가장 큰 화폐 단위부터' 돈을 거슬러 주는 것 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #include using namespace std; int n = 1260; int cnt = 0; int coinTypes[4] = {500, 100, 50, 10}; int main() { for (int i=0; i> N >> M >> K; vector numbers; int first = 0, second = 0;..